templates/themes/theme/accreditation/accreditations_slider.html.twig line 1

Open in your IDE?
  1. {% if accreditations|length > 0 %}
  2.     <section class="slider overflow-x-hidden my-12">
  3.         <div class="accreditation-slider">
  4.             <div class="swiper-wrapper items-center">
  5.                 {% for accreditation in accreditations %}
  6.                     <div class="swiper-slide">
  7.                         <div class="w-full flex flex-col justify-center items-center text-center">
  8.                             {% if accreditation.url %}<a class="flex items-center" href="{{ accreditation.url }}" target="_blank">{% endif %}
  9.                                 <img class="h-auto max-h-[60px] w-auto max-w-full mb-3" src="{{ imageCache('/'~ accreditation.getFullImagePath, "cropResize", 200, 200) }}" height="100" width="100" alt="{{ accreditation.title }}" loading="lazy" />
  10.                             {% if accreditation.url %}</a>{% endif %}
  11.                         </div>
  12.                     </div>
  13.                 {% endfor %}
  14.             </div>
  15.             <div class="swiper-pagination"></div>
  16.         </div>
  17.     </section>
  18. {% endif %}