-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (86 loc) · 3.88 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<!-- Favicon requirements -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/favicon-16x16.png"
/>
<link rel="manifest" href="/icons/site.webmanifest" />
<meta name="msapplication-TileColor" content="#2b5797" />
<meta name="theme-color" content="#ffffff" />
<!-- for leaflet -->
<link
rel="preload"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
<!-- HTML Meta Tags -->
<title>The Yale Detour</title>
<meta
name="description"
content="The Yale Detour was developed with two ambitions in mind: (1) to think about how Yale’s history as a colonial institution remains embedded in its architecture and landscape in the present-day and (2) to highlight sites where Yale students and New Haven residents have changed the course of the university’s history through remarkable moments of struggle."
/>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="The Yale Detour" />
<meta
itemprop="description"
content="The Yale Detour was developed with two ambitions in mind: (1) to think about how Yale’s history as a colonial institution remains embedded in its architecture and landscape in the present-day and (2) to highlight sites where Yale students and New Haven residents have changed the course of the university’s history through remarkable moments of struggle."
/>
<meta itemprop="image" content="/icons/og-image.png" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="" />
<meta property="og:type" content="website" />
<meta property="og:title" content="The Yale Detour" />
<meta
property="og:description"
content="The Yale Detour was developed with two ambitions in mind: (1) to think about how Yale’s history as a colonial institution remains embedded in its architecture and landscape in the present-day and (2) to highlight sites where Yale students and New Haven residents have changed the course of the university’s history through remarkable moments of struggle."
/>
<meta property="og:image" content="/icons/og-image.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="The Yale Detour" />
<meta
name="twitter:description"
content="The Yale Detour was developed with two ambitions in mind: (1) to think about how Yale’s history as a colonial institution remains embedded in its architecture and landscape in the present-day and (2) to highlight sites where Yale students and New Haven residents have changed the course of the university’s history through remarkable moments of struggle."
/>
<meta name="twitter:image" content="/icons/og-image.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400&display=swap"
rel="preload"
as="style"
type="text/css"
onload="this.onload=null;this.rel='stylesheet'"
/>
<link rel="stylesheet" href="/src/defaults.css" />
</head>
<body>
<noscript
>You need to enable JavaScript to run this app.</noscript
>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>