Contacts
    {% for contact in site.data.contacts %}
    - 
        {% 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 %}
        {{ title }}
        —
        {{ description }}
    
 
    {% endfor %}
{% assign description = "" %}
{% assign title = "" %}
{% assign url = "" %}