{% set contact_phone = society['phone'] ?? '' %}
{% set contact_whatsapp = society['whatsapp'] ?? contact_phone %}
<div class="mobile-menu-contact" aria-label="Contact rapide">
{% if contact_whatsapp is not empty %}
{% set whatsapp_number = contact_whatsapp|replace({
'+': '',
' ': '',
'-': '',
'(': '',
')': ''
}) %}
<a
class="mobile-menu-contact__link mobile-menu-contact__link--whatsapp"
href="https://wa.me/{{ whatsapp_number }}"
target="_blank"
rel="noopener noreferrer"
aria-label="WhatsApp"
>
<i class="fab fa-whatsapp" aria-hidden="true"></i>
</a>
{% endif %}
{% if contact_phone is not empty %}
<a
class="mobile-menu-contact__link mobile-menu-contact__link--phone"
href="tel:{{ contact_phone }}"
aria-label="Telephone"
>
<i class="fa fa-phone" aria-hidden="true"></i>
</a>
{% endif %}
</div>