blob: b6af6e0498559b6599d042334466eb038de3d553 (
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 %}
<a href="{{ link.path | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
{{ link.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
</a>
<!-- Separation -->
{% unless forloop.last %}
<span>|</span>
{% endunless %}
{% endfor %}
</small>
</footer>
|