templates/theme/list.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Liste des thèmes{% endblock %}
  3. {# {% block stylesheets %}
  4.     {{ parent() }}
  5. {% endblock %} #}
  6. {% block body %}
  7.     <h1>Liste des thèmes</h1>
  8.     <p class="text-center">
  9.         Cliquez sur le thème de votre choix
  10.     </p>
  11.     <div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 themes">
  12.         {# {{ dump(themes) }} #}
  13.         {% for theme in themes %}
  14.             <div class="col text-center theme">
  15.                 <a href="{{ path('showThemeBySlug', { slug:theme.slug }) }}" title="{{ theme.name|capitalize }}">
  16.                     {# <img src="/image/themes/{{ theme.slug }}.jpg" alt=""> #}
  17.                     <img src="{{ vich_uploader_asset(theme.picto, 'file')|imagine_filter('theme') }}" class="img-fluid"><br>
  18.                     <span>{{ theme.name|capitalize }}</span>
  19.                 </a>
  20.             </div>
  21.         {% endfor %}
  22.     </div>
  23.     <div class="recherche text-center col-xl-4 col-lg-6 col-md-12 mg-auto mt-4">
  24.         <p>Ou recherchez par mots-clés...</p>
  25.         {{ form(searchForm) }}
  26.     </div>
  27. {% endblock %}