Files
popov.link/_includes/contacts.html
T

12 lines
384 B
HTML
Raw Normal View History

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