templates/instrument/_instruments-list.html.twig line 1

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