{% if contacts and (adresse1 or adresse2) %}
{% if adresse1 %}
{% set itemAdresse1 = contacts[0].adresse~' '~contacts[0].codePostal~' '~contacts[0].ville %}
<div class="info-header info-adresse1">
{% if contacts[0].lienMap is not empty %}<a href="{{contacts[0].lienMap}}" title="{{itemAdresse1}}" target="_blank">{% endif %}
<i class="fa fa-map-marker mr-2 {{class_icon}}"></i>
{% if contactsInfos[0].nomContact is not empty and titreAdresse1 %} {{contactsInfos[0].nomContact}} : {% endif %}
{{itemAdresse1}}
{% if contacts[0].lienMap is not empty %}</a>{% endif %}
</div>
{% endif %}
{% if contacts|length > 1 and adresse2 %}
{% set itemAdresse2 = contacts[1].adresse~' '~contacts[1].codePostal~' '~contacts[1].ville %}
<div class="info-header info-adresse2">
{% if contacts[1].lienMap is not empty %}<a href="{{contacts[1].lienMap}}" title="{{itemAdresse2}}" target="_blank">{% endif %}
<i class="fa fa-map-marker mr-2 {{class_icon}}"></i>
{% if contactsInfos[1].nomContact is not empty and titreAdresse1 %} {{contactsInfos[1].nomContact}} : {% endif %}
{{itemAdresse2}}
{% if contacts[1].lienMap is not empty %}</a>{% endif %}
</div>
{% endif %}
{% endif %}