-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
38 lines (38 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Live</title>
<meta charset="utf-8" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<link rel="apple-touch-icon" sizes="120x120" href="/logo-120.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimal-ui"
/>
<link rel="shortcut icon" sizes="48x48" href="/logo-48.png" />
<meta name="theme-color" content="#f60" />
<link rel="manifest" href="/manifest.json" />
<style>
#skip a {
position: absolute;
left: -10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
#skip a:focus {
position: static;
width: auto;
height: auto;
}
</style>
</head>
<body>
<div id="skip"><a href="#app">skip to content</a></div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>