{% extends 'layout/layout-container.html.twig' %}
{% block content %}
{% include 'include/_title.html.twig' with {title: ('Tous les artistes ')|trans} %}
<section>
<h1 class="text-center my-5">Tous les titres</h1>
<div class="row g-5 mb-3">
{% for sound in sounds %}
<div class="col-lg-2 col-6">
{{ component('sound', {
sound: sound,
isCard: true
}) }}
</div>
{% endfor %}
</div>
<div class="d-flex flex-column align-items-center justify-content-center mb-3">
{{ knp_pagination_render(sounds) }}
</div>
</section>
{% endblock %}