{% if basics.location|length > 0 and basics.location is not empty %}
{% set location = basics.location %}
{% if location.address is not empty %}
{{ location.address }}
{% endif %}
{% if location.city is not empty %}
{{ location.city }},
{% endif %}
{% if location.region is not empty %}
{{ location.region }},
{% endif %}
{% if location.countryCode is not empty %}
{{ location.countryCode }}
{% endif %}
{% endif %}
{% for profile in basics.profiles %}
{{ render_profile(profile)|raw }}
{% endfor %}
{% endif %}
{% include 'contact.html.twig' %}
{% include 'phone.html.twig' %}
{% if basics.email is not empty %}
{{ basics.email }}
{% endif %}
{% if basics.phone is not empty %}
{{ basics.phone }}
{% endif %}
{% if basics.location|length > 0 and basics.location is not empty %}
{% for location in basics.location %}
{% if location.address is not empty %}
{{ location.address }}
{% endif %}
{% if location.city is not empty %}
{{ location.city }}
{% if location.postalCode is not empty %}
{{ location.postalCode }}
{% endif %}
{% if location.countryCode is not empty %}
{{ location.countryCode }}
{% endif %}
{% endif %}
{% endfor %}