blob: e60815d5e2b5ea0dc44294ec3855fb2df05baf31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<footer class="footer">
<small>
{% for link in site.data.footer_links %}
<a href="{{ link.path | strip_newlines | strip_html | strip | normalize_whitespace | uri_escape }}">
{{ link.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
</a>
<!-- Separation -->
{% unless forloop.last %}
<span>|</span>
{% endunless %}
{% endfor %}
</small>
</footer>
|