-
-
Notifications
You must be signed in to change notification settings - Fork 778
/
footer.html
102 lines (96 loc) · 3.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<footer class="main-footer">
<div class="footer-contain">
<nav class="footer-nav" aria-label="Secondary">
<div class="header-links">
<div class="footer-columns">
<div class="column">
{% for item in site.data.navigation.ourwork %}
<li>
{% if item.bolded == true %}
<a style="font-weight:bold" href="{{ item.link }}">
{{item.name}}
</a>
{% else %}
<a href="{{ item.link }}">
{{item.name}}
</a>
{% endif %}
</li>
{% endfor %}
</div>
<div class="column">
{% for item in site.data.navigation.joinus %}
<li>
{% if item.bolded == true %}
<a style="font-weight:bold" href="{{ item.link }}">
{{item.name}}
</a>
{% else %}
<a href="{{ item.link }}">
{{item.name}}
</a>
{% endif %}
</li>
{% endfor %}
</div>
<div class="column">
{% for item in site.data.navigation.getintouch %}
<li>
{% if item.bolded == true %}
<a style="font-weight:bold" href="{{ item.link }}">
{{item.name}}
</a>
{% else %}
<a href="{{ item.link }}">
{{item.name}}
</a>
{% endif %}
</li>
{% endfor %}
</div>
<div class="column">
{% for item in site.data.navigation.toolkit %}
<li>
{% if item.bolded == true %}
<a style="font-weight:bold" href="{{ item.link }}">
{{item.name}}
</a>
{% else %}
<a href="{{ item.link }}">
{{item.name}}
</a>
{% endif %}
</li>
{% endfor %}
</div>
</div>
<a href="/donate/" class="btn btn-primary-on-dark btn-md-narrow btn--donate-footer btn--default" title="Go to Donate Page">Donate</a>
<div class="footer-links">
<div class="credits-page">
<a href="/credits">Credits</a>
|
<a href="/sitemap">Site Map</a>
|
<a href="/privacy-policy">Privacy Policy</a>
|
<a href="/code-of-conduct">Code of Conduct</a>
|
<a href="/join">Join Us</a>
</div>
<ul class="inline-list header-list">
{% for item in site.data.navigation.social %} {% if item.footer %}
<li>
<a href="{{ item.link }}" rel="noopener" target="_blank" class="js-inline-link js-inline-link-{{ item.name | downcase }}" aria-label="{{ item.name }}" >
{% if item.icon %}
{%- include {{ site.baseurl }}{{ item.icon }} -%}
{% endif %}
<span class="sr-only">{{ item.name }}</span>
</a>
</li>
{% endif %} {% endfor %}
</ul>
</div>
</div>
</nav>
</div>
</footer>