-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 1.31 KB
/
index.html
File metadata and controls
37 lines (30 loc) · 1.31 KB
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
<html>
<head>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
</head>
<div class="container-fluid">
<h2>Where is Gay Marriage Legal in the US?</h2>
<p>The most recent status of gay marriage, across the US. Latest state to legalize highlighted below. Click any state for details.</p>
<ul class="list-inline">
<li><span class="Legal">tag</span> Legal</li>
<li><span class="Appeal">tag</span> Ban struck down, appeal pending</li>
<li><span class="Challenged">tag</span> Banned, currently challenged in court</li>
<li><span class="Banned">tag</span> Banned</li>
</ul>
<aside class="small text-muted">Source: Lambda Legal, Human Rights Campaign</aside>
<section id="blurb"></section>
</div>
<script src="js/jquery.js"></script>
<script src="js/tabletop.js"></script>
<script type="text/javascript" src="http://assets.motherjones.com/interactives/plugins/pym.js/src/pym.js"></script>
<script src="js/script.js"></script>
<script>
us_map ({
container: 'blurb',
initial_state: 'CA',
//proxy: proxy here,
key: 'https://docs.google.com/spreadsheet/pub?key=0Aq7nL59nLsCMdDJxZUo4cFZaWGF5d0pSZU9XSE44NVE&output=html',
})
</script>
</html>