-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
44 lines (36 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>EcoDash</title>
<!-- meta data -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<!-- CSS Reset, Google Web Fonts, and custom CSS -->
<link href="/static/css/cssreset-min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<link href="/static/css/main.css" rel="stylesheet" type="text/css">
<!-- Google JS API Loader and Google Maps API -->
<script src="https://www.google.com/jsapi"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBOzTCHe8SKnHEEFQrxCttZqNyNUllVz5c&v=3.exp&libraries=drawing"></script>
</head>
<body>
<!-- Create the toplevel page containers -->
<section id="pageheader"></section>
<section id="pagecontent"></section>
<section id="pagefooter"></section>
<!-- Load the Clojurescript main application code -->
<script src="/static/compiled_js/main.js"></script>
<script>
ecodash.core.main(
'{{ eeMapId | safe }}',
'{{ eeToken | safe }}',
'{{ countryPolygons | safe }}',
'{{ provincePolygons | safe }}'
)
</script>
</body>
</html>