-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
47 lines (40 loc) · 1.85 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
41
42
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<meta name="keywords" content="{{ APP_KEYWORDS }}" />
<meta name="description" content="{{ APP_DESCRIPTION }}" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="{{ APP_TITLE }}" />
<meta property="og:description" content="{{ APP_DESCRIPTION }}" />
<meta property="og:image" content="{{ APP_IMAGE }}" />
<!-- Twitter -->
<meta property="twitter:title" content="{{ APP_TITLE }}" />
<meta property="twitter:description" content="{{ APP_DESCRIPTION }}" />
<meta property="twitter:image" content="{{ APP_IMAGE }}" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<link rel="preconnect" href="https://use.typekit.net" />
<link rel="stylesheet" href="/fonts.css" />
<link rel="stylesheet" href="/highlighter-dark.css" />
<title>{{ APP_TITLE }}</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>