{% if title %}

{{ title }}

{# Hides title element entirely if value is empty str #} {% elif title is None %}

Contact Information

{% endif %} {% if description %}

{{ description }}

{% endif %}

{% if address %} Address:   {{ address.city }}, {{ address.state }} {% endif %}

Phone: {{ data.phone_number.as_national }} Email: {{ data.email }}

{% if data.website or data.linkedin %}

{% if data.website %} Website: {{ data.website }} {% endif %} {% if data.linkedin %} LinkedIn: https://linkedin.com/in/{{ data.linkedin }} {% endif %}

{% endif %} {% if data.git or data.art_station %}

{% if data.git %} Git: {{ data.git }} {% endif %} {% if data.art_station %} ArtStation: {{ data.art_station }} {% endif %}

{% endif %}