popov.link/_includes/contacts.html

11 lines
387 B
HTML
Raw Normal View History

<h2>Contacts</h2>
<ul>
2024-02-14 10:38:24 +03:00
{%- for contact in site.data.contacts -%}
<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>&mdash;</span>
2024-02-14 10:38:24 +03:00
<span>{{- contact.description | strip | normalize_whitespace | xml_escape -}}</span>
</li>
2024-02-14 10:38:24 +03:00
{%- endfor -%}
2024-02-14 13:12:06 +03:00
</ul>