-
Notifications
You must be signed in to change notification settings - Fork 0
/
polling-place.html
36 lines (32 loc) · 1.2 KB
/
polling-place.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
---
layout: default
title: 'Find your polling place and #vote4reform - MAYDAY.US'
omit_title_suffix: true
cssid: polling-place
hideSidebar: true
og_title: 'Find your polling place and #vote4reform - MAYDAY.US'
og_description: 'Find your polling place and #vote4reform - MAYDAY.US'
---
{% capture content %}
<div id="_vit"></div>
<h3 style="margin-top:10px">Don't know who to vote for? <a href="https://mayday.us/campaigns/vote-for-reform/">Look up your local reformers</a>.</h3>
{% endcapture %}
{% capture footer_content %}
<script type="text/javascript" src="https://voter-info-tool.appspot.com/js/loader.js"></script>
<script>
$(document).ready(function(){
var cookie = $.cookie();
if(cookie.hasOwnProperty('address')){
full_address = [cookie.address]
if(cookie.hasOwnProperty('city')){full_address.push(cookie.city) };
if(cookie.hasOwnProperty('state')){full_address.push(cookie.state) };
if(cookie.hasOwnProperty('zip')){full_address.push(cookie.zip) };
address_string = full_address.join(' ');
vit.load({election_id:4100, address: address_string});
}else{
vit.load({election_id:4100});
}
});
</script>
{% endcapture %}
{% include subpage.html %}