<div class="row justify-content-center">
{% for instrument in instruments %}
<div class="col-lg-3 col-6 mb-5">
<div class="d-flex flex-column justify-content-start align-items-center position-relative">
{% include 'instrument/_instrument-picture.html.twig' with {instrument: instrument} %}
<h2 class="fs-5">{{ instrument.name }}</h2>
<a class="stretched-link"
href="{{ path('app_instrument_show', {'slug': instrument.slug}) }}"
aria-label="{{ ('visiter la page ' ~ instrument.name)|trans }}"></a>
<a class="stretched-link position-relative mb-2"
href="{{ path('app_company_show', {'slug': instrument.company.slug}) }}">{{ instrument.company.name }}</a>
</div>
{% include 'sound/_list-group-sounds.html.twig' %}
</div>
{% endfor %}
</div>