-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
74 lines (67 loc) · 2.16 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
---
layout: default
title: YourNextMEP
---
<script>
$(document).ready(function(){
var form = $('form#postcode-form');
form.submit(function() {
$.post('/api/postcode', form.serialize(),
function(data) {
window.location = data.url;
});
return false;
});
});
</script>
<div class="row front-panel">
<div class="col-md-5 postcode">
<h1>Find your MEP candidates</h1>
<p id='intro'>
On Thursday 22 May 2014 you will be able to vote for the MEPs who will represent your region in the <a href='https://en.wikipedia.org/wiki/European_Parliament' target='_blank'>European Parliament</a>. Use this site to discover who your candidates are and learn about them!
</p>
<form action='/api/postcode' method='POST' role="form" class='form-inline' id='postcode-form'>
<div class="form-group">
<label class="sr-only" for="postcode">Postcode</label>
<input name="postcode" class="form-control" type="text" placeholder="enter your postcode">
</div>
<button type="submit" class="btn btn-default">Find region</button>
</form>
</div>
<div class="col-md-7 regions">
<h1>UK EU election regions</h1>
{% for region in site.pages %}{% if region.layout == 'region' %}
<a class='btn btn-default' href="{{ region.url }}">{{ region.name }}</a>
{% endif %}{% endfor %}
</div>
</div>
<div class='row front-links'>
<div class='col-md-12'>
<h2>Other EU election sites</h2>
</div>
</div>
<div class='row front-links'>
<div class='col-md-3'>
<a href='https://factcheckeu.org/' target="_blank">FactCheckEU</a>
<p>
Fact checking of EU lovers and haters.
</p>
</div>
<div class='col-md-3'>
<a href='http://euandi.eu' target="_blank">euandi</a>
<p>
Match your beliefs to EU parties.
</p>
</div>
<div class='col-md-3'>
<a href='http://uk.votematch.eu/' target="_blank">VoteMatch UK</a>
<p>
UK party vote matching by VoteMatch for the EU election.
</p>
</div>
<div class='col-md-3'>
<a href='https://www.myvote2014.eu/en/home' target="_blank">MyVote2014</a>
<p>
See how MEPs voted and match against a party.
</p>
</div>