{% if contacts and (tel1 or tel2) %}
{% if unserialize(contacts[0].tel) %}
{% set nbrTelContact1 = unserialize(contacts[0].tel)|length %}
{# Si le premier contact a 2 téléphone donc afficher ses 2 tels sinon afficher un tel pour le contact 1 et un tel pour contact 2#}
{% if nbrTelContact1 > 1 %}
{% set itemTel1Contact1 = unserialize(contacts[0].tel)[0] %}
{% set itemTel2Contact1 = unserialize(contacts[0].tel)[1] %}
{% if tel1 %}
<div class="info-header info-tel1">
<a href="tel:{{itemTel1Contact1|replace({' ': ''})}}" class="tel tel-header-1" rel="nofollow" itemprop="telephone">
<i class="fa fa-phone mr-2 {{class_icon}}"></i>
{% if contacts[0].titreTel != "" and titreTel1 %}{{contacts[0].titreTel}}{% endif %}
{{itemTel1Contact1}}
</a>
</div>
{% endif %}
{% if tel2 %}
<div class="info-header info-tel2">
<a href="tel:{{itemTel2Contact1|replace({' ': ''})}}" class="tel tel-header-2" rel="nofollow" itemprop="telephone">
{# {% if contacts[0].titreTel2 != "" and titreTel2 %}{{contacts[0].titreTel2}}{% endif %} #}
<i class="fa fa-mobile mr-2 {{class_icon}}"></i>
{{itemTel2Contact1}}
</a>
</div>
{% endif %}
{% else %}
{% set itemTel1Contact1 = unserialize(contacts[0].tel)[0] %}
{% if tel1 %}
<div class="info-header info-tel1">
<a href="tel:{{itemTel1Contact1|replace({' ': ''})}}" class="tel tel-header-1" rel="nofollow" itemprop="telephone">
<i class="fa fa-phone mr-2 {{class_icon}}"></i>
{% if contacts[0].titreTel != "" and titreTel1 %}{{contacts[0].titreTel}}{% endif %}
{{itemTel1Contact1}}
</a>
</div>
{% endif %}
{% endif %}
{% if tel2 and nbrTelContact1 <= 1 and contacts|length > 1 %}
{% if unserialize(contacts[1].tel) %}
{% set itemTel1Contact2 = unserialize(contacts[1].tel)[0] %}
<div class="info-header info-tel2">
<a href="tel:{{itemTel1Contact2|replace({' ': ''})}}" class="tel tel-header-2" rel="nofollow" itemprop="telephone">
<i class="fa fa-phone mr-2 {{class_icon}}"></i>
{# {% if contacts[0].titreTel2 != "" and titreTel2 %}{{contacts[0].titreTel2}}{% endif %} #}
{{itemTel1Contact2}}
</a>
</div>
{% endif %}
{% endif %}
{% endif %}
{% endif %}