aboutsummaryrefslogtreecommitdiff
path: root/templates/includes/contacts.html
blob: c311bdcc5030ccaf217a95aaeee7a91a76e90b4c (plain) (blame)
1
2
3
4
5
6
7
8
<ul>
    {% for contact in config.extra.contacts %}
    <li>
        <span>{{ contact.title | trim }}:</span>
        <a href="{{ contact.url | trim }}" rel="nofollow" target="_blank">{{ contact.name | trim }}</a>
    </li>
    {% endfor %}
</ul>