templates/front/main/header/mobile/top_menu_session_contact_mobile.html.twig line 1

Open in your IDE?
  1. {% set contact_phone = society['phone'] ?? '' %}
  2. {% set contact_whatsapp = society['whatsapp'] ?? contact_phone %}
  3. <div class="mobile-menu-contact" aria-label="Contact rapide">
  4.     {% if contact_whatsapp is not empty %}
  5.         {% set whatsapp_number = contact_whatsapp|replace({
  6.             '+': '',
  7.             ' ': '',
  8.             '-': '',
  9.             '(': '',
  10.             ')': ''
  11.         }) %}
  12.         <a
  13.             class="mobile-menu-contact__link mobile-menu-contact__link--whatsapp"
  14.             href="https://wa.me/{{ whatsapp_number }}"
  15.             target="_blank"
  16.             rel="noopener noreferrer"
  17.             aria-label="WhatsApp"
  18.         >
  19.             <i class="fab fa-whatsapp" aria-hidden="true"></i>
  20.         </a>
  21.     {% endif %}
  22.     {% if contact_phone is not empty %}
  23.         <a
  24.             class="mobile-menu-contact__link mobile-menu-contact__link--phone"
  25.             href="tel:{{ contact_phone }}"
  26.             aria-label="Telephone"
  27.         >
  28.             <i class="fa fa-phone" aria-hidden="true"></i>
  29.         </a>
  30.     {% endif %}
  31. </div>