-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
74 lines (67 loc) · 2.33 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
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Commuter - Waka</title>
<meta
name="description"
content="Discover our communities, using data from the New Zealand 2018 Census"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="format-detection" content="telephone=no" />
<meta name="theme-color" content="#111111" />
<link rel="stylesheet" href="/static/global.css" />
<link
href="https://api.mapbox.com/mapbox-gl-js/v2.15.0/mapbox-gl.css"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed&display=swap"
rel="stylesheet"
/>
<script
defer
src="https://api.mapbox.com/mapbox-gl-js/v2.15.0/mapbox-gl.js"
></script>
<script defer src="/src/index.js" type="module"></script>
<script async src="https://d3js.org/d3.v5.min.js"></script>
<meta property="og:title" content="Waka Commuter" />
<meta
property="og:description"
content="Discover our communities, using data from the New Zealand 2018 Census"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@consindo" />
<meta name="twitter:title" content="Waka Commuter" />
<meta
name="twitter:description"
content="Discover our communities, using data from the New Zealand 2018 Census"
/>
<!-- Hardcoded, because has to be an absolute URL! -->
<meta
property="og:image"
content="https://commuter.waka.app/social.jpg"
/>
<meta
name="twitter:image"
content="https://commuter.waka.app/social.jpg"
/>
<link rel="icon" sizes="16x16 32x32 64x64" href="/static/favicon.ico" />
<link rel="icon" type="image/png" sizes="64x64" href="/static/favicon-64.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16.png" />
</head>
<body>
<div id="svelte-app"></div>
<noscript>
<div id="details">
<h3>Sorry!</h3>
<p>This application requires JavaScript to be enabled.</p>
</div>
</noscript>
</body>
</html>