-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 841 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chessboard Vue</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script type="importmap">
{
"imports": {
"vue": "./node_modules/vue/dist/vue.esm-browser.js"
}
}
</script>
<script type="module" src="./public/index.js"></script>
<link rel="stylesheet" href="./public/style.css" />
<link rel="icon" href="./favicon.ico" />
</head>
<body>
<header class="bg-dark text-light p-2">Chessboard — Vue.js</header>
<main></main>
<footer class="text-center pt-2 pb-3">
<hr />
<a href="https://github.com/zackschuster/chessboard-vue">Source Code</a>
|
<a href="https://www.zackschuster.com">Portfolio</a>
</footer>
</body>
</html>