aboutsummaryrefslogtreecommitdiff
path: root/_includes/links.html
blob: e7a2801bc9bcd711dcbea4d6b49e9ff444c9b0f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<h2>Related links</h2>

<ul>
    {% for link in site.data.links %}
    <li>
        <a href="{{ link.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}" target="_blank">{{ link.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</a>
        <span></span>
        <span>{{ link.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</span>
    </li>
    {% endfor %}
</ul>