-
Notifications
You must be signed in to change notification settings - Fork 0
/
hiv.html
42 lines (38 loc) · 1.54 KB
/
hiv.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>IllList: HIV</title>
<!--Bootstrap-->
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!--esri content-->
<link rel="stylesheet" href="http://js.arcgis.com/3.14/esri/css/esri.css">
<link rel="stylesheet" href="css/map.css">
<script src="http://js.arcgis.com/3.14/"></script>
<script src="/illlist/js/illist_map.js"></script>
</head>
<body>
<!--Sets the location to import the bootstrapMenu-->
<div class="row-fluid">
<div id="bootstrapMenu"></div>
<!--Imports the menu html file to the desired location to prevent from having to rewrite menu constantly.-->
<script>
$(document).ready( function () {
$("#bootstrapMenu").load("assets/bootstrapMenu.html #content");
});
</script>
</div>
<div id="wrapper" class="container-fluid">
<div id="map"></div>
</div>
<div class="row-fluid"><hr/></div>
<div id="footer">
<br />
<p>HackDuke 2015</p>
</div>
</body>
</html>