templates/pages/galerie.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3.     
  4.    
  5.     {% include "fragments/_banner.html.twig" %}
  6.     <section class="medias">
  7.         <div class="filters">
  8.             <ul class="d-flex w-100 justify-content-center">
  9.                 <li class="p-3"><a href="#" data-filter="*" class="btn btn-outline-light active">{% trans %}TOUS{% endtrans %}</a></li>
  10.                 {% for theme in content.themes %}
  11.                     {% if theme.images|length %}
  12.                     <li class="p-3"><a href="#" data-filter="{{ ".theme_"~loop.index }}" class="btn btn-outline-light">{{ theme.titre }}</a></li>
  13.                     {% endif %}
  14.                 {% endfor %}
  15.             </ul>
  16.         </div>
  17.         <div class="container">
  18.             <div class="row gx-2 gy-3 mt-3 isotope-grid">
  19.                 
  20.                 {% for theme in content.themes %}
  21.                     {% set theme_cpt = loop.index %}
  22.                     {% for media in theme.images %}
  23.                         <a href="{{ media.formats['sulu-large'] }}" data-toggle="lightbox" data-gallery="galerie" class="col-6 col-lg-4 col-xxl-3 item {{ "theme_"~theme_cpt }}">
  24.                             <img src="{{ media.formats['sulu-400x400'] }}" class="w-100">
  25.                             <h3 class="fs-6 my-2 m-0">{{ media.title }}</h3>
  26.                             <hr class="my-1 mx-1">
  27.                             {{ media.description }}
  28.                         </a>
  29.                     {% endfor %}
  30.                 {% endfor %}
  31.             </div>
  32.         </div>
  33.     </section>
  34.     
  35.     
  36. {% endblock %}