-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfooter.html
26 lines (21 loc) · 971 Bytes
/
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
<footer role="contentinfo" id="site-footer">
<nav role="navigation" class="menu bottom-menu">
<ul class="menu-item">
{% for link in site.data.footer %}
{% if link.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url %}
{% endif %}
<li><a href="{{ domain }}{{ link.url }}" {% if link.url contains 'http' %}target="_blank"{% endif %}>{{ link.title }}</a></li>
{% endfor %}
</ul>
</nav><!-- /.bottom-menu -->
<p class="copyright">© {{ site.time | date: '%Y' }} Contributors. See the <a href="{{ site.url }}{{site.baseurl}}/terms/">terms page</a> for information. <a href="http://microbit.co.uk/"> 'BBC' and 'microbit'</a> are are trade marks of the BBC..</p>
{% if jekyll.environment == "production" %}
{% include javascript-load-production.html %}
{% endif %}
{% if jekyll.environment == "development" %}
{% include javascript-load-development.html %}
{% endif %}
</footer>