-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (81 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- VIZLAB GTM CODE -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V443MQ3V1S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-V443MQ3V1S');
</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<!-- USDWS-init js -->
<script type="module" src="/node_modules/@uswds/uswds/dist/js/uswds-init.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- On beta, add robots tag to stop indexing. An empty string for VITE_APP_TIER means the 'prod' version of the application -->
<% if(VITE_APP_TIER !== ''){ %>
<meta name="robots" content="noindex,nofollow">
<% } %>
<title>%VITE_APP_LONG_TITLE%</title>
<!-- Primary Meta Tags -->
<meta name="title" content="%VITE_APP_LONG_TITLE%">
<meta name="description" content="%VITE_APP_DESCRIPTION%">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://labs.waterdata.usgs.gov/visualizations/%VITE_APP_TITLE%">
<meta property="og:title" content="%VITE_APP_LONG_TITLE%">
<meta property="og:description" content="%VITE_APP_DESCRIPTION%">
<meta property="og:image" content="https://labs.waterdata.usgs.gov/visualizations/images/%VITE_APP_TITLE%_metacard.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://labs.waterdata.usgs.gov/visualizations/%VITE_APP_TITLE%">
<meta property="twitter:title" content="%VITE_APP_LONG_TITLE%">
<meta property="twitter:description" content="%VITE_APP_DESCRIPTION%">
<meta property="twitter:image" content="https://labs.waterdata.usgs.gov/visualizations/images/%VITE_APP_TITLE%_metacard.png">
<script type='application/ld+json'>
{ "@context": "http://www.schema.org",
"@type": "WebSite", "name": %VITE_APP_LONG_TITLE%,
"url": "https://labs.waterdata.usgs.gov/visualizations/%VITE_APP_TITLE%",
"about": "An illustrated story from the USGS Vizlab",
"datePublished": "November 20, 2024",
"contributor": [
{ "@type": "Person",
"name": "Althea Archer",
"email": "[email protected]",
"affiliation": { "@type": "Organization", "legalName": "U.S. Geological Survey" }
},
{ "@type": "Person",
"name": "Leo Ivey",
"email": "[email protected]",
"affiliation": { "@type": "Organization", "legalName": "U.S. Geological Survey" }
},
{ "@type": "Person",
"name": "Hayley Corson-Dosch",
"email": "[email protected]",
"affiliation": { "@type": "Organization", "legalName": "U.S. Geological Survey" }
},
{ "@type": "Person",
"name": "Cee Nell",
"email": "[email protected]",
"affiliation": { "@type": "Organization", "legalName": "U.S. Geological Survey" }
}
]
},
"audience": { "@context": "http://schema.org", "@type": "Audience", "audienceType": "General public"},
"publisher": { "@context": "http://schema.org", "@type": "Organization", "legalName": "U.S. Geological Survey" },
"keywords": { "water, data viz, data visualization, trout, climate adaptation, climate, fish, climate resilience" }
</script>
<!-- We participate in the US government's analytics program. See the data at analytics.usa.gov. -->
<script async type="text/javascript" src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=USGS" id="_fed_an_ua_tag"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<!-- USDWS js -->
<script type="module" src="/node_modules/@uswds/uswds/dist/js/uswds.js"></script>
</body>
</html>