-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.08 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
<!doctype html>
<html lang="en" data-theme="light">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="{{ themeColor }}" />
<link rel="manifest" href="/manifest.json" />
<meta name="application-name" content="{{ shortName }}" />
<meta name="msapplication-TileColor" content="{{ themeColor }}" />
<meta name="description" content="{{ name }}" />
<meta name="version" content="{{ version }}" />
<title>{{ shortName }}</title>
<link
rel="stylesheet"
type="text/css"
href="https://necolas.github.io/normalize.css/8.0.1/normalize.css"
/>
<link
rel="stylesheet"
type="text/css"
href="https://fonts.googleapis.com/css?family=DM+Mono&display=swap"
/>
<link rel="stylesheet" type="text/css" href="/theme.css" />
</head>
<body>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>