-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 2.01 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lithosphere</title>
<!-- Libraries and Frameworks -->
<link rel="stylesheet" href="./libraries/jquery-jvectormap-2.0.3.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.3.0/css/ion.rangeSlider.min.css"/>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="./libraries/jquery.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="./libraries/jquery-jvectormap-2.0.3.min.js"></script>
<script src="./libraries/jquery-jvectormap-world-mill.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ion-rangeslider/2.3.0/js/ion.rangeSlider.min.js"></script>
<!-- Custom CSS/JS -->
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<div id="main-wrapper">
<div id="header-wrapper">
<img src="litho_logo.png" alt="logo" width="30%">
</div>
<div id="world-map-wrapper">
<div id="world-map"></div>
</div>
</div>
<div id="overlay"></div>
<!--<div id="example">
<p>{{ hello }}</p>
</div>-->
<div id="options-wrapper">
<button id="toggle-options">Options</button>
<div id="options">
<div id="calendars">
<div class="calendar" id="datepicker-from"></div>
<div class="calendar" id="datepicker-to"></div>
</div>
<div id="sliders">
<input type="text" class="js-range-slider" name="magnitude-slider" value="" />
</div>
</div>
</div>
</body>
</html>