forked from Recidiviz/covid19-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (68 loc) · 2.17 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!--
generatePageContent.tsx looks for the following strings in this file:
- "TITLE PLACEHOLDER"
- "<style></style>"
- "CONTENT PLACEHOLDER"
If you change any of these, make sure to edit generatePageContent.tsx as well.
-->
<html>
<head>
<meta charset="utf-8" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/public/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/public/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/public/favicon-16x16.png"
/>
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<!--
We use .webmanifest because if this is named manifest.json, Parcel will
compile it to JS. Using the workaround recommended here:
https://github.com/parcel-bundler/parcel/issues/235#issuecomment-397226657
-->
<link rel="manifest" href="/manifest.webmanifest" />
<title>TITLE PLACEHOLDER</title>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/tailwind.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Poppins:300,400,600|Rubik&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style></style>
</head>
<body>
<div id="app">CONTENT PLACEHOLDER</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="src/entry-point-client/index.tsx"></script>
<!--
Redirect if src/entry-point-client/index.tsx doesn't load properly.
The variable `window.appLoaded` is set at the bottom of index.tsx.
-->
<script>
if (location.pathname === "/" && !window.appLoaded)
location.href = "/unsupported-browser";
</script>
<link
href="https://fonts.googleapis.com/css?family=Libre+Baskerville|Poppins|Rubik:300,400&display=swap"
rel="stylesheet"
/>
</body>
</html>