src/Modules/Socials/Hooks/Socials/hook.html.twig line 1

Open in your IDE?
  1. <section class="hook_socials">
  2.     <p class="hook_socials_text">Suivez-nous</p>
  3.     {% if socials is not empty %}
  4.         <div class="hook_socials_socials">
  5.             {% for social in socials %}
  6.                 <a href="{{ social.value }}" class="hook_socials_social_link" id="{{ rewrite(social.name) }}" target="_blank" aria-label="Lien {{ social.name }}">
  7.                     {% if social.icon is not null %}
  8.                         <i class="{{ "hook_socials_social_link_icon_"~rewrite(social.name) }} hook_socials_social_link_icon icon">
  9.                             {% include icons_rep~social.icon %}
  10.                         </i>
  11.                     {% endif %}
  12.                 </a>
  13.             {% endfor %}
  14.         </div>
  15.     {% endif %}
  16. </section>