2020-01-23 18:41:44 +03:00
|
|
|
<h2>Contacts</h2>
|
|
|
|
|
|
|
|
<ul>
|
2024-02-14 10:38:24 +03:00
|
|
|
{%- for contact in site.data.contacts -%}
|
2020-01-23 18:41:44 +03:00
|
|
|
<li>
|
2024-02-14 13:12:06 +03:00
|
|
|
<a href="{{- contact.url | relative_url | url_escape -}}" target="_blank">{{- contact.title | strip | normalize_whitespace | xml_escape -}}</a>
|
|
|
|
<span>—</span>
|
2024-02-14 10:38:24 +03:00
|
|
|
<span>{{- contact.description | strip | normalize_whitespace | xml_escape -}}</span>
|
2020-01-23 18:41:44 +03:00
|
|
|
</li>
|
2024-02-14 10:38:24 +03:00
|
|
|
{%- endfor -%}
|
2024-02-14 13:12:06 +03:00
|
|
|
</ul>
|