templates/instrument/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 instruments')|trans} %}
  4.     <h1 class="text-center">Instruments</h1>
  5.     {% include 'instrument/_instruments-list.html.twig' %}
  6.     <div class="d-flex flex-column align-items-center justify-content-center mb-3">
  7.         {{ knp_pagination_render(instruments) }}
  8.     </div>
  9. {% endblock %}