-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
64 lines (39 loc) · 1.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
<html>
<head>
<title>GRIB2</title>
<!-- Bootstrap 5.0 CSS -->
<link href="./lib/bootstrap.min.css" rel="stylesheet">
<!-- Openlayers library -->
<link rel="stylesheet" href="ol.css">
<script src="./lib/ol.js"></script>
<!-- Vue -->
<script src="./lib/vue.global.js"></script>
<!-- Client parser of .vue files -->
<script src="./lib/vue3-sfc-loader.js"></script>
<!-- Vue client parser-->
<script src="vueParser.js"></script>
<!-- GRIB2 decoders -->
<script src='./grib2.js'></script>
<script src='./grib2utils.js'></script>
<!-- Particle Animation -->
<script src="AnimationEngineGRIB.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-40RZDVEZFQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-40RZDVEZFQ');
</script>
</head>
<body style="background-color: aqua; margin: 0; padding: 0;">
<!-- Bootstrap 5.0 and Popper https://getbootstrap.com/docs/5.0/getting-started/introduction/ -->
<script src="bootstrap.bundle.min.js"></script>
<!-- Vue component -->
<div id="vue-app"></div>
<script>
// Load vue component
app.mount('#vue-app');
</script>
</body>
</html>