-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfooter.html
57 lines (53 loc) · 2 KB
/
footer.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
<nav class="footer-nav">
<ul>
{% for item in site.data.secondary-menu %}
<li{% if current_page.last == item.slug %} class='active'{% endif %}>
<a href="{{ site.baseurl }}/{{ item.slug }}">{{ item.title }}</a>
</li>
{% endfor %}
</ul>
</nav>
<footer class="site-footer">
<div class="wrapper">
<a class="footer-logo" href="http://openbudgets.eu/">
<img src="{{ "/img/openbudgets-logo-white.png" | prepend: site.baseurl }}" alt="OpenBudgets.eu">
</a>
<ul class="footer-primary-links">
<li><a href="https://okfn.org/about/">About</a></li>
</ul>
<div class="footer-secondary-links">
<ul class="footer-social">
{% if site.facebook_username %}
<li>
<a href="https://facebook.com/{{ site.facebook_username }}" class="facebook" rel="external">
Facebook
</a>
</li>
{% endif %}
{% if site.twitter_username %}
<li>
<a href="https://twitter.com/{{ site.twitter_username }}" class="twitter" rel="external">
Twitter
</a>
</li>
{% endif %}
{% if site.linkedin %}
<li>
<a href="https://www.linkedin.com/{{ site.linkedin }}" class="linkedin" rel="external">
LinkedIn
</a>
</li>
{% endif %}
{% if site.github_link %}
<li>
<a href="https://github.com/{{ site.github_link }}" class="github" rel="external">
GitHub
</a>
</li>
{% endif %}
</ul>
</div>
<hr>
<p><img src="{{ "/img/eu-2.jpg" | prepend: site.baseurl }}" alt="OpenBudgets.eu" align="center" width="40em">OpenBudget.eu has received funding from the European Union’s <a href="https://ec.europa.eu/programmes/horizon2020/">H2020 EU research and innovation programme</a> under grant agreement <a href="http://cordis.europa.eu/project/rcn/194394_en.html">No 645833</a> | <a href="https://okfn.org/privacy-policy/" rel="external">Privacy Policy</a></p>
</div>
<