-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
97 lines (89 loc) · 3.41 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.peter.css?v2">
<title>Toe the Line</title>
</head>
<body>
<div class="wrapper">
<div class="above">
<div id="logo">
<img src="img/Logo.png" width="66" height="72">
</div>
<p id="more-info"><a href="http://hacks.rewiredstate.org/events/parlyhack-2012/toe-the-line" target="_blank">More info</a></p>
<div id="fist">
<img src="img/Icon.png">
</div>
<div id="scale">
<img src="img/ArrowAxis_up.png">
</div>
</div>
<div class="banner">
<div class="prev button">
<img src="img/Previous_off.png">
</div>
<div class="title">
<h2></h2>
</div>
<div class="next button">
<img src="img/Next_off.png">
</div>
</div>
<div class="below">
<div class="mp-info">
</div>
<!--
<div class="stat">
<h1>Turnout</h1>
<img src="img/stat.png">
</div>
-->
</div>
<!-- <div class="mps">
</div>-->
</div>
<!-- MICRO-TEMPLATES -->
<script type="text/tim" class="mp">
<div class="mp {{id}}">
<div class="name">
<a title="See {{title}} on the Public Whip" href="{{url}}" target="_blank">{{title}}</a>
</div>
<a title="{{title}} on the Public Whip" href="{{url}}" target="_blank"><img src="{{avatar}}" alt="{{title}}" data-mp="{{id}}"></a>
<div class="info">
{{title}}
</div>
</div>
</script>
<script type="text/tim" class="policy">
<a title="See this policy on the Public Whip" href="{{url}}" target="_blank">{{name}}</a>
</script>
<script type="text/tim" class="template-mp-info">
<h1>{{title}}</h1>
<p><em>{{consituency}}, {{party}}</em></p>
<ul>{{votingRecordHtml}}</ul>
</script>
<!-- SCRIPTS -->
<script src="js/jquery.min.js"></script>
<script src="js/underscore-min.js"></script>
<script src="js/tinytim.min.js"></script>
<!-- Live data scraping
<script src="js/noodle-wrapper.js"></script>
<script src="js/livedata.js"></script>
-->
<script src="js/toetheline.js"></script>
<!-- ga -->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36592108-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>
</body>
</html>