aboutsummaryrefslogtreecommitdiff
path: root/_includes/links.html
blob: 8d40d6d2f7afa644f3b42b79eeb6d23d37683e4d (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 | relative_url | uri_escape }}" target="_blank">{{ link.title | strip | normalize_whitespace | xml_escape }}</a>
        <span></span>
        <span>{{ link.description | strip | normalize_whitespace | xml_escape }}</span>
    </li>
    {% endfor %}
</ul>