templates/pages/catalogue.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.        
  8.         <div class="container">
  9.             <div class="row gx-2 gy-3 mt-3 isotope-grid">
  10.                 {% for theme in content.themes %}
  11.                     <a href="{{ theme.images[0].formats['sulu-large'] }}" data-toggle="lightbox" data-gallery="galerie" data-footer="{{ theme.titre }}{% if theme.prix %} {{ theme.prix }} €{% endif %}" class="col-6 col-lg-4 col-xxl-3 item">
  12.                         {% if theme.images|length %}
  13.                             <img src="{{  theme.images[0].formats['sulu-400x400'] }}" class="w-100">
  14.                         {% endif %}
  15.                         <h3 class="fs-6 my-2 m-0">{{ theme.titre }}</h3>
  16.                         <hr class="my-1 mx-1">
  17.                         {{ theme.description }}
  18.                         {% if theme.prix %}
  19.                             <div class="text-end">{{theme.prix}} €</div>
  20.                         {% endif %}
  21.                     </a>
  22.                 {% endfor %}
  23.             </div>
  24.         </div>
  25.     </section>
  26.     
  27.     
  28. {% endblock %}