-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathfooter.html
More file actions
23 lines (21 loc) · 823 Bytes
/
footer.html
File metadata and controls
23 lines (21 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="jump-top-container">
<div id="jump-top" class="jump-top noSelect desktop-only"><span class="material-icons">arrow_upward</span></div>
</div>
<div class="page-status-container"></div>
<footer class="footer">
<div class="footer-container">
<nav class="footer-nav">
<ul>
{% for navpage in site.nav.footer %}
<li>
<a class="footer-nav-link" href="{% if navpage.url contains 'http' %}{{ navpage.url }}{% else %}{{ site.baseurl }}{{ navpage.url }}{% endif %}">{{ navpage.name }}</a>
</li>
{% endfor %}
</ul>
</nav>
<div class="credit">
Created by <a href="http://www.gidgreen.com/">Gideon Greenspan</a>, <a href="https://github.com/svivian">Scott Vivian</a>,
and <a href="https://github.com/q2a/question2answer/graphs/contributors">contributors</a>
</div>
</div>
</footer>