forked from voteflux/flux-website-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcandidates.html
71 lines (66 loc) · 2.87 KB
/
candidates.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
---
title: 2016 Federal Election Candidates
permalink: "/candidates/"
layout: default
dark-theme: true
---
{% include navbar.html %}
<section class="py4 pt5 bg-near-black texture-bg-img near-white">
<div class="mx-auto max-width-4 px2 sm-px3">
<div class=" mt4">
{% include components/main-heading.html
text="2016 Federal Election Candidates"
font-size="h0 line-height-2"
font-weight="bold"
line="true" %}
<div class="h-font light lg-col-10 light-silver sm-pr4">
<h3 class="h3 sm-h2 letter-spacing-2 line-height-3 mb2">Flux Senators serve to protect the integrity of Flux. </h3>
<p class="h4 light sm-h3 letter-spacing-3 silver">Being a Flux Senator is not like being any other Senator. Flux Senators respect Flux as a method for decision making more than they respect their own opinions. If elected, this may mean casting a vote in the Senate contrary to their personal beliefs.</p>
<p class="h4 light sm-h3 letter-spacing-3 silver">All our Flux candidates have made a public declaration stating that they will act as a proxy for the Flux system and that they won't use their status for personal gain (including personal policy agenda).</p>
<p class="h4 light sm-h4 letter-spacing-3">N.B. Candidates for the 2017 WA State Election have not yet been selected.</p>
</div>
</div>
</div>
</section>
<div class="bg-light-gray py4">
<div class="mx-auto max-width-4 px2 sm-px3">
<div class="sm-pr4 dark-gray">
{% include components/main-heading.html
text="Lead candidates"
font-size="h1 line-height-2"
font-weight="bold" %}
{% include components/hr-muted.html classes="mb3"%}
<div class="sm-flex flex-wrap mxn2">
{% assign lead_candidates = site.candidates | where: "lead", true %}
{% for candidate in lead_candidates %}
{% capture snippet %} {{ candidate.bio | first | truncatewords: 50 }} {% endcapture %}
{% include candidates/candidate-card.html
state=candidate.state
house=candidate.house
url=candidate.url
title=candidate.title
bio=snippet %}
{% endfor %}
</div>
</div>
</div>
</div>
<div class="bg-white py4">
<div class="mx-auto max-width-4 px2">
<div class="sm-flex flex-wrap mxn2 sm-pr4 dark-gray">
{% assign candidates = site.candidates | where: "lead", false %}
{% for candidate in candidates %}
{% if candidate.hide == nil %}
{% capture snippet %} {{ candidate.bio | first | truncatewords: 50 }} {% endcapture %}
{% include candidates/candidate-card.html
state=candidate.state
house=candidate.house
url=candidate.url
title=candidate.title
bio=snippet %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% include footer.html %}