aboutsummaryrefslogtreecommitdiff
path: root/_includes/external_links.html
blob: 4a04694074614a94b5a96fde522d2f1727cf6c1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<p class="social-links">
  {% for link in site.data.external_links %}
    <a href="{{ link.url | strip_newlines | strip_html | strip | normalize_whitespace | uri_escape }}">
      {{ link.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
    </a>
    <!-- Separation -->
    {% unless forloop.last %}
      <span>|</span>
    {% endunless %}
  {% endfor %}
</p>