-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
49 lines (48 loc) · 2.35 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
<!DOCTYPE html>
<html>
<head>
<title>Ebola Blockades Dashboard</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/site.css"/>
<script src="js/jquery.js"></script>
<script src="js/d3.js" charset="utf-8"></script>
<script src="data/westafrica.js"></script>
<script src="data/regions.js"></script>
<script src="data/data.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-46399763-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="container dashboard">
<div class="row">
<h1>West Africa Ebola Movement Restrictions Dashboard</h1>
<p>Update for 16th February. Created by Simon Johnson. Twitter: <a href="https://twitter.com/Simon_B_Johnson" target="_blank">@simon_b_Johnson</a> Source:<a href="https://docs.google.com/spreadsheets/d/1l79MMZba10_Kym6PkrLosyWz3uWFaAixfJVuH5q3o3Q/edit?usp=sharing" target="_blank">Google Spreadsheet</a></p>
</div>
<div class="row">
<div class="col-md-7">
<div id="sticky-anchor"></div>
<div class="col-md-12" id="map"></div>
</div>
<div class="col-md-5">
<div id="current_geo" class="row res_box">
<h3>Movement Restrictions</h3>
<p>Click a country to browse movement restrictions</p>
</div>
<div id="sub_geo" class="row res_box"></div>
<div id="sup_geo" class="row res_box"></div>
</div>
</div>
</div>
<script src="js/movementrestrictions.js"></script>
</body>
</html>