aboutsummaryrefslogtreecommitdiff
path: root/templates/includes/useful_links.html
blob: 3661447d77ff6ef9b7e7f78ec08ee779493644aa (plain) (blame)
1
2
3
4
5
6
7
8
9
<ul>
    {% for link in config.extra.links %}
    <li>
        <a href="{{ link.url | trim }}" rel="nofollow" target="_blank">{{ link.title | trim }}</a>
        <span>&mdash;</span>
        <span>{{ link.description | trim }}</span>
    </li>
    {% endfor %}
</ul>