2020-01-23 18:41:44 +03:00
|
|
|
<h2>Contacts</h2>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for contact in site.data.contacts %}
|
|
|
|
<li>
|
2020-01-23 19:21:21 +03:00
|
|
|
<a href="{{ contact.url | relative_url | uri_escape }}" target="_blank">{{ contact.title | strip | normalize_whitespace | xml_escape }}</a>
|
2020-01-23 18:41:44 +03:00
|
|
|
<span>—</span>
|
2020-01-23 19:21:21 +03:00
|
|
|
<span>{{ contact.description | strip | normalize_whitespace | xml_escape }}</span>
|
2020-01-23 18:41:44 +03:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|