-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (39 loc) · 2.18 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script>
// ensure trailing slash on _rewrite path
if (!/\/$/.test(window.location.pathname)) {
window.location = window.location.pathname + '/' + location.hash;
}
</script>
<link rel="stylesheet" type="text/css" href="static/css/main.css" />
<link rel="stylesheet" type="text/css" href="static/pointifex.css" />
<link rel="stylesheet" type="text/css" href="static/js/lib/leaflet/leaflet.css" />
<link rel="stylesheet" type="text/css" href="static/css/graph.css" />
<link rel="stylesheet" type="text/css" href="static/css/detail.css" />
<link rel="stylesheet" type="text/css" href="static/css/legend.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="static/js/lib/leaflet/leaflet.ie.css" />
<![endif]-->
<title>Atlas</title>
</head>
<body>
<div class="container" role="main">
</div>
<script type="text/javascript" src="static/pointifex.js"></script>
<script type="text/javascript" src="static/js/lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="static/js/lib/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="/dashboard/_design/dashboard/_rewrite/static/js/topbar.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap-tooltip.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap-popover.js"></script>
<script type="text/javascript" src="modules.js"></script>
<script src="static/js/lib/director-1.0.9-1.min.js" type="text/javascript" ></script>
<script src="static/js/lib/tabletop.js" type="text/javascript" ></script>
<script src="static/js/lib/d3.min.js" type="text/javascript" ></script>
<script src="static/js/lib/d3.layout.min.js" type="text/javascript" ></script>
<script src="static/js/lib/rickshaw.js" type="text/javascript" ></script>
<script src="static/js/application.js"></script>
</body>
</html>