templates/composantsPages/homeComponents/nosReseauxSociauxLiens.html.twig line 1

Open in your IDE?
  1. <section class="pt-4 pb-4">
  2. <div class="container" data-animate="fadeInUp">
  3. <div class="heading-text heading-section text-center">
  4. <h2><span>{{ 'components.nos_reseaux_liens.titre' | admintrans | raw }}</span></h2>
  5. </div>
  6. <div class="mb-4 social-icons social-icons-large social-icons-colored text-center" data-animate="fadeInUp">
  7. <ul>
  8. {% for attrName,name in constant('App\\Entity\\ReseauxSociaux::SOCIAL') %}
  9. {% if attribute(generalS.reseauxSociaux,attrName) %}
  10. <li class="social-{{ attrName }}"><a href="{{ attribute(generalS.reseauxSociaux,attrName) }}"><i class="{{ name }}"></i></a></li>
  11. {% endif %}
  12. {% endfor %}
  13. </ul>
  14. </div>
  15. </div>
  16. </section>