{% extends "base.html.twig" %}
{% block content %}
{% include "fragments/_banner.html.twig" %}
<section class="medias">
<div class="container">
<div class="row gx-2 gy-3 mt-3 isotope-grid">
{% for theme in content.themes %}
<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">
{% if theme.images|length %}
<img src="{{ theme.images[0].formats['sulu-400x400'] }}" class="w-100">
{% endif %}
<h3 class="fs-6 my-2 m-0">{{ theme.titre }}</h3>
<hr class="my-1 mx-1">
{{ theme.description }}
{% if theme.prix %}
<div class="text-end">{{theme.prix}} €</div>
{% endif %}
</a>
{% endfor %}
</div>
</div>
</section>
{% endblock %}