-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (60 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<meta content="text/html; charset=utf-8" />
<meta
content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"
name="viewport"
/>
<link rel="icon" href="/images/SW_favicon.png" />
<link href="/css/font-awesome-5.7.1.css" rel="stylesheet" />
<link href="/images/SW_favicon.png" rel="icon" type="image/png" />
<!-- descriptive things -->
<title>Dashboard - ActivitySim</title>
<meta content="SimWrapper" name="twitter:title" />
<meta content="SimWrapper" name="og:title" />
<meta content="From the VSP team at TU-Berlin" name="twitter:description" />
<meta content="From the VSP team at TU-Berlin" name="og:description" />
<meta content="https://activitysim.github.io/dashboard" name="og:url" />
<!-- <meta
content="https://github.com/matsim-vsp/covid-sim/raw/master/src/assets/images/v1-thumb.png"
name="og:image"
/> -->
<meta content="summary_large_image" name="twitter:card" />
<meta content="@billyinberlin" name="twitter:site" />
<meta content="@billyinberlin" name="twitter:creator" />
<!-- <meta
content="https://github.com/matsim-vsp/covid-sim/raw/master/src/assets/images/v1-thumb.png"
name="twitter:image"
/> -->
<!-- github pages hack: allows single-page-app to handle arbitrary URLs -->
<script>
;(function () {
var redirect = sessionStorage.redirect
delete sessionStorage.redirect
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect)
}
})()
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,700;1,300;1,700&family=Space+Grotesk:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,700;1,300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<noscript>
<strong>This site requires JavaScript. Please enable it to continue.</strong>
</noscript>
</body>
</html>