blob: 06df5631ae6dd1c5d4c861e59e969d26b76858c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<h2>Contacts</h2>
<ul>
{% for contact in site.data.contacts %}
<li>
{% assign description = contact.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape %}
{% assign title = contact.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape %}
{% assign url = contact.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape %}
<a href="{{ url }}" target="_blank">{{ title }}</a>
<span>—</span>
<span>{{ description }}</span>
</li>
{% endfor %}
</ul>
{% assign description = "" %}
{% assign title = "" %}
{% assign url = "" %}
|