templates/sound/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/layout-container.html.twig' %}
  2. {% block content %}
  3.     {% include 'include/_title.html.twig' with {title: ('Tous les artistes ')|trans} %}
  4. <section>
  5.     <h1 class="text-center my-5">Tous les titres</h1>
  6.     <div class="row g-5 mb-3">
  7.         {% for sound in sounds %}
  8.             <div class="col-lg-2 col-6">
  9.                 {{ component('sound', {
  10.                     sound: sound,
  11.                     isCard: true
  12.                 }) }}
  13.             </div>
  14.         {% endfor %}
  15.     </div>
  16.     <div class="d-flex flex-column align-items-center justify-content-center mb-3">
  17.         {{ knp_pagination_render(sounds) }}
  18.     </div>
  19. </section>
  20. {% endblock %}