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

Open in your IDE?
  1. {% if unserialize(contactItem.tel) %}
            {% if nbrContactsInput <= 1 %}
            <div class="item-top">
        {% endif %}
        <div class="info-footer info-tels-footer">
    
            {% for tel in unserialize(contactItem.tel) %}
                
                <div class="info-tel" itemprop="telephone">
                    <a href="tel:{{remove_non_numeric(tel)}}"  class="tel tel-footer-{{loop.index}}" rel="nofollow" data-phone-number="{{remove_non_numeric(tel)}}">
                    
                        <i class="fa {% if loop.index == 2 %}fa-mobile{% else %}fa-phone{% endif %} mr-2 {{class_icon}}"></i>
                        {% if contactItem.titreTel != "" and titreTelFooter %}{{contactItem.titreTel}}{% endif %}
                        {{tel|raw}}
                    </a>
                </div>
            {% endfor %}
            
        </div>  
        {% if nbrContactsInput <= 1 %}
            </div>
        {% endif %}
    {% endif %}