{% extends 'base.html.twig' %}
{% block title %}Liste des thèmes{% endblock %}
{# {% block stylesheets %}
{{ parent() }}
{% endblock %} #}
{% block body %}
<h1>Liste des thèmes</h1>
<p class="text-center">
Cliquez sur le thème de votre choix
</p>
<div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 themes">
{# {{ dump(themes) }} #}
{% for theme in themes %}
<div class="col text-center theme">
<a href="{{ path('showThemeBySlug', { slug:theme.slug }) }}" title="{{ theme.name|capitalize }}">
{# <img src="/image/themes/{{ theme.slug }}.jpg" alt=""> #}
<img src="{{ vich_uploader_asset(theme.picto, 'file')|imagine_filter('theme') }}" class="img-fluid"><br>
<span>{{ theme.name|capitalize }}</span>
</a>
</div>
{% endfor %}
</div>
<div class="recherche text-center col-xl-4 col-lg-6 col-md-12 mg-auto mt-4">
<p>Ou recherchez par mots-clés...</p>
{{ form(searchForm) }}
</div>
{% endblock %}