-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (50 loc) · 2.19 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
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Legal map of the world</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="underscore.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="gmaps.js"></script>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<script src="bootstrap/js/bootstrap.js"></script>
<link rel="stylesheet" href="style.css">
<script src="legalMap.js"></script>
</head>
<body>
<!-- "Form me on GitHub" banner -->
<div class="forkme">
<a href="https://github.com/robmiller/legalmap">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub">
</a>
</div>
<div class="top row-fluid">
<div class="filters span6">
<p id="treaties">
<span>Treaties:</span>
</p>
<p id="memberships">
<span>Memberships:</span>
<p id="situations">
<span>Ongoing events:</span>
</p>
<p id="deathpenalty">
<span>Death penalty status:</span>
<button class="btn btn-danger" data-deathpenalty="2">Still in use</button>
<button class="btn btn-warning" data-deathpenalty="1"><i>De facto</i> abolished</button>
<button class="btn btn-success" data-deathpenalty="0">Abolished</button>
</div>
<div class="about span6">
<h3>About this map</h3>
<p>The world of international criminal law, international human rights law, crimes against humanity, and war crimes is complex and often confusing. This map aims to both illustrate this fact and help alleviate the confusion, by showing you just what each country is signed up to, participates in, and is doing at this moment.</p>
<p>Legal research assembled and compiled into JSON format by <a href="http://gmccall.co.uk">Gillian McCall</a>; code by <a href="http://robm.me.uk">Rob Miller</a>.</p>
<p><button id="showall" class="btn btn-success">Show all countries</button></p>
</div>
</div>
<div class="below">
<a href="#" id="togglefilters" class="toggle btn" data-action="close"><i class="icon-arrow-up"></i> <span>Close filters</span></a>
</div>
<div id="map"></div>
</body>
</html>