-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
69 lines (61 loc) · 2.33 KB
/
Copy pathtemplate.html
File metadata and controls
69 lines (61 loc) · 2.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
%sapper.base%
<meta
name="description"
content="Cal-Adapt provides a means of exploring peer-reviewed data portraying how climate change might affect California at the state and local level."
/>
<meta property="og:title" content="Cal-Adapt" />
<meta
property="og:description"
content="Cal-Adapt provides a means of exploring peer-reviewed data portraying how climate change might affect California at the state and local level."
/>
<meta property="og:image" content="image.jpg" />
<link rel="icon" href="/favicon.ico" />
<!-- 32×32 -->
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- 180×180 -->
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#04797c" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@Cal_Adapt" />
<meta name="twitter:title" content="Cal-Adapt" />
<meta
name="twitter:image"
content="https://cal-adapt.org/twitter-card.jpg"
/>
<meta
name="twitter:image:alt"
content="picture of yosemite with Caladapt logo"
/>
<meta
name="twitter:description"
content="Explore peer-reviewed data portraying how climate change might affect California"
/>
<!-- Sapper creates a <script> tag containing `src/client.js`
and anything else it needs to hydrate the app and
initialise the router -->
%sapper.scripts%
<!-- Sapper generates a <style> tag containing critical CSS
for the current page. CSS for the rest of the app is
lazily loaded when it precaches secondary pages -->
%sapper.styles%
<!-- This contains the contents of the <svelte:head> component, if
the current page has one -->
%sapper.head%
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-LPTXXNV75J"
></script>
</head>
<body>
<!-- The application will be rendered inside this element,
because `src/client.js` references it -->
<div id="root">%sapper.html%</div>
</body>
</html>