aboutsummaryrefslogtreecommitdiff
path: root/_includes/external_links.html
blob: f18abed626d0b52a822fb9a51973926fd872753b (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 | xml_escape }}
    </a>
    <!-- Separation -->
    {% unless forloop.last %}
      <span>|</span>
    {% endunless %}
  {% endfor %}
</p>