aboutsummaryrefslogtreecommitdiff
path: root/_includes/additional_links.html
blob: ddc0c97ba4d82098c9a3df3fbb4b0c358676ac1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<p class="social-links">
  {% for link in site.data.additional_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 trait -->
    {% unless forloop.last %}
      <span>|</span>
    {% endunless %}
  {% endfor %}
</p>