-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
62 lines (60 loc) · 2.92 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>How the Ebola Outbreak Spread Across West Africa</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<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="data/data.js"></script>
<script src="data/data_vis_map.js"></script>
<script src="js/d3.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">
<div class="row">
<div id="topbar" class="col-sm-12">
<h1>How the Ebola Outbreak Spread Across West Africa</h1>
<p>Created by Simon Johnson - Twitter: <a href="https://twitter.com/Simon_B_Johnson">@simon_b_johnson</a> - Updated by Jade Dickinson - Twitter: <a href="https://www.twitter.com/Jade_Dickinson1"> @Jade_Dickinson1 </a>
- Sources: <a href="http://www.thewire.com/global/2014/07/how-the-ebola-outbreak-spread-across-west-africa/375231/">The Wire</a>,
<a href="http://en.wikipedia.org/wiki/2014_West_Africa_Ebola_outbreak">Wikipedia</a>, Local Government
</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div id="sticky-anchor"></div>
<div id="info-graphic">
<h4>Time line</h4>
<div id="timeline"></div>
<h4 id="barcharttitle">Confirmed Deaths and Cases - 15/01/2014</h4>
<div id="barchart"></div>
<h4>Map</h4>
<div id="map"></div>
</div>
</div>
<div id="text" class="col-sm-6"></div>
<div id="browse">
<div id="Previous" class="col-xs-3 col-xs-offset-3">
Previous
</div>
<div id="Next" class="col-xs-3 col-xs-3">
Next
</div>
</div>
</div>
</div>
<script src="js/info_narrative.js"></script>
</body>
</html>