aboutsummaryrefslogtreecommitdiff
path: root/templates/includes/contacts.html
blob: d61647c53fdb6a686e2302cf7331dd507686d993 (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 }}" target="_blank">{{ contact.name | trim }}</a>
    </li>
    {% endfor %}
</ul>