templates/front/main/header/top_menu_contacts.html.twig line 1

Open in your IDE?
  1. <ul class="topbar-list">
  2. {#    {{ dump(social_networks) }}#}
  3.     <li>
  4.        {% for social_network in social_networks %}
  5.             <a href="{{ path('app_main_click_social_network', {'id': social_network.id}) }}" target="_blank">
  6.                 <i class="{{ social_network.icon }}"></i>
  7.             </a>
  8.        {% endfor %}
  9.     </li>
  10.     {% if society['phone'] is defined %}
  11.         <li>
  12.             <a href="tel: {{ society['phone']  }}"><span>{{ society['phone']  }}</span></a>
  13.         </li>
  14.     {% endif %}
  15.     {% if society['email']  is defined %}
  16.         <li>
  17.             <a href="mailTo: {{ society['email']  }}"> <span>{{ society['email'] }}</span></a>
  18.         </li>
  19.     {% endif %}
  20. </ul>