Files
popov.link/_includes/external_links.html
T

12 lines
405 B
HTML
Raw Normal View History

2018-04-24 20:00:04 +04:00
<p class="social-links">
2018-04-24 20:14:39 +04:00
{% for link in site.data.external_links %}
2018-04-24 20:00:04 +04:00
<a href="{{ link.url | strip_newlines | strip_html | strip | normalize_whitespace | uri_escape }}">
2018-04-25 02:15:04 +04:00
{{ link.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
2018-04-24 20:00:04 +04:00
</a>
2018-04-24 20:14:39 +04:00
<!-- Separation -->
2018-04-24 20:00:04 +04:00
{% unless forloop.last %}
<span>|</span>
{% endunless %}
{% endfor %}
</p>