-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·54 lines (52 loc) · 2.65 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
<!DOCTYPE html>
<html>
<head>
<title>WebGNOME</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
<link rel="import" href="/node_modules/@google-web-components/google-chart/index.html">
<script data-main="/js/main" src="/node_modules/requirejs/require.js"></script>
<script src="/js/boot.js"></script>
<script>CESIUM_BASE_URL = './node_modules/cesium/Build/Cesium'</script>
<script id="_fed_an_ua_tag" type="text/javascript" src="/node_modules/federated-analytics/federated-analytics.js?agency=DOC&subagency=NOAA&pua=UA-50520236-16"></script>
<script>
ga('create', 'UA-50520236-16', 'auto');
ga('set', 'checkProtocolTask', null); // Disable file protocol checking.
ga('set', 'checkStorageTask', null); // Disable cookie storage checking.
ga('set', 'historyImportTask', null); // Disable history checking (requires reading from cookies).
ga('send', 'pageview', location.hash);
</script>
<!--[if lt IE 9]>
<script src="node_modules/respond/dest/respond.min.js"></script>
<![endif]-->
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R8MMHGLWK2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag()
{dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R8MMHGLWK2');
</script>
<body>
<!--
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="alert alert-warning .alert-dismissable" style="margin-top: 20px">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
Parts of the U.S. Government are closed. However, because the information this site provides is necessary to protect life and property, it will be updated and maintained during the Federal Government shutdown. <strong>For critical weather information, please visit <a href="https://www.weather.gov">www.weather.gov</a>.</strong> To learn more, see <a href="https://www.commerce.gov">www.commerce.gov</a>.
</div>
</div>
</div>
</div>
-->
<noscript>
<div class="container">
<div class="alert alert-danger">JavaScript required to use WebGNOME</div>
</div>
</noscript>
</body>
</html>