-
-
Notifications
You must be signed in to change notification settings - Fork 777
/
footer.html
24 lines (24 loc) · 1.21 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
<footer class="main-footer">
<div class="footer-contain">
<nav class="footer-nav" aria-label="Secondary">
<div class="header-links">
<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>