-
Notifications
You must be signed in to change notification settings - Fork 10
/
legislators.html
55 lines (52 loc) · 2.25 KB
/
legislators.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
---
layout: default
title: legislators
permalink: /leaders/
---
{%capture content %}
{% include jumbotrons/general-dark.html title="Potential Leaders for Reform" sub_title="in the 114th Congress"%}
<div class="container legislators-potential">
<div class="row">
<div class="col-md-12">
<form method="get" accept-charset="utf-8" class="mayday-inputs legislators-filter">
<input id="search" class="form-control" name="search" placeholder=" Search by name or state" type="text" data-list=".js-legislators">
<div class="form-group">
<label class="radio-inline" for="filter-value"><strong>Filter:</strong></label>
<label class="radio-inline" for="leaders">
<input type="radio" name="filter-value" id="leaders" value="leaders" title="Leaders supporting fundamental reform">
<i class="fa fa-check-square-o"></i>
Leaders
</label>
<label class="radio-inline" for="potential">
<input type="radio" name="filter-value" id="potential" value="potential" checked="checked" title="Potential Leaders for fundamental reform">
<i class="fa fa-minus-circle"></i>
Potential Leaders
</label>
<label class="radio-inline" for="all">
<input type="radio" name="filter-value" id="all" value="all" title="All Legislators"> All Legislators
</label>
</div>
</form>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p class="show-potential margin-y-sm">Potential leaders are the <span id="js-potential-count">47</span> nominations from our community that we agree are the key to unlocking the majority we need. <a href="/the-plan/">Learn more about our campaign.</a></p>
</div>
</div>
<div class="row no-gutter legislators-listing">
<div id="js-legislators" class="js-legislators text-center">
<i class="fa fa-refresh fa-spin fa-4x"></i>
</div>
</div>
</div>
{% endcapture %}
{% capture page_specific_javascript %}
<script>
$(document).ready(function(){
md.leaders.initialize();
});
</script>
{% endcapture %}
{% capture footer_scripts %}{{footer_scripts}}{{page_specific_javascript}}{% endcapture %}
{% include sub_layouts/default_layout.html %}