-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.28 KB
/
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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="apple-touch-icon" href="./assets/apple-touch-icon.png" />
<link rel="icon" href="./assets/favicon.png" sizes="any" />
<title>Stargaze</title>
<!-- Styles -->
<link rel="stylesheet" href="./styles/styles.css" />
<!-- External dependencies and aliases -->
<script type="importmap">
{
"imports": {
"@/": "./scripts/",
"@andreasphil/design-system": "https://esm.sh/gh/andreasphil/[email protected]",
"@andreasphil/js-inverted-index": "https://esm.sh/gh/andreasphil/[email protected]",
"@andreasphil/vue-use-async-task": "https://esm.sh/gh/andreasphil/[email protected]?external=vue",
"vue": "https://esm.sh/[email protected]/dist/vue.esm-browser.prod.js"
}
}
</script>
<!-- App scripts -->
<script async type="module" src="./scripts/app.js"></script>
</head>
<body>
<div data-with-fallback>
<div id="app"></div>
<!-- Show a loading state while the app is starting -->
<div data-when="empty">
<p aria-busy="true"><small>Loading ...</small></p>
</div>
</div>
</body>
</html>