forked from ciudadanointeligente/quien-te-financia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimarias.html
52 lines (42 loc) · 1.34 KB
/
primarias.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
---
layout: base
title: "Quien te financia"
---
<script>
$(document).ready(function() {
$('.fancybox').fancybox({
padding : 0,
prevEffect : 'none',
nextEffect : 'none',
closeBtn : true,
arrows : true,
});
});
</script>
<section class="content home blacklist">
<div class="manAbove"> </div>
<div class="theBlackBox">
<h2 class="titleLine"> Muchos millones se invirtieron en las primarias. Revisa las declaraciones de los candidatos que participaron: </h2>
<ul class="candidatesList">
{% for post in site.posts %}
{% if post.categories contains 'p_blacklist' %}
<li>
{% include p_ficha_home.html %}
</li>
{% endif %}
{% endfor %}
{% for post in site.posts %}
{% if post.categories contains 'p_whitelist' %}
<li>
{% include p_ficha_home.html %}
</li>
{% endif %}
{% endfor %}
</ul>
</ul>
<h3>Encuentra más información sobre los candidatos en <a class="link-vota" href="http://votainteligente.cl/">Votainteligente.cl</a></h3>
</div>
</section>
<section class="content theWhiteBox">
<a href="http://votainteligente.cl" target="_blank"><img src="images/banner-vota.jpg" /></a>
</section>