templates/front/theme1/partials/footer/elements/_telephones.html.twig line 1

Open in your IDE?
  1. {% if telFooter %}
  2.         {% if unserialize(contactItem.tel) %}
  3.              {% if nbrContactsInput <= 1 %}
  4.                 <div class="item-top">
  5.             {% endif %}
  6.             <div class="info-footer info-tels-footer">
  7.                 {% for tel in unserialize(contactItem.tel) %}
  8.                     
  9.                     <div class="info-tel" itemprop="telephone">
  10.                         <a href="tel:{{remove_non_numeric(tel)}}"  class="tel tel-footer-{{loop.index}}" rel="nofollow" data-phone-number="{{remove_non_numeric(tel)}}">
  11.                         
  12.                             <i class="fa {% if loop.index == 2 %}fa-mobile{% else %}fa-phone{% endif %} mr-2 {{class_icon}}"></i>
  13.                             {% if contactItem.titreTel != "" and titreTelFooter %}{{contactItem.titreTel}}{% endif %}
  14.                             {{tel|raw}}
  15.                         </a>
  16.                     </div>
  17.                 {% endfor %}
  18.                 
  19.             </div>  
  20.             {% if nbrContactsInput <= 1 %}
  21.                 </div>
  22.             {% endif %}
  23.         {% endif %}
  24. {% endif %}