templates/front/partials/slider-nav.html.twig line 1

Open in your IDE?
  1. <div class="{{ mainClass }}" js-slider-navigation>
  2.     <button class="icon-center swiper-button icon-center swiper-button-prev {{ buttonFirst is defined ? buttonFirst : ''}} {{ buttonClass is defined ? buttonClass : '' }}">
  3.         <span class="sr-only">Slide précédente</span>
  4.         <svg width="10" height="16" class="icon--{{ iconColor }}">
  5.             <use href="#icon-chevron-right-2" xlink:href="#icon-chevron-right-2"/>
  6.         </svg>
  7.     </button>
  8.     {% if hasPagination is defined %}
  9.     <div class="flex px-2 md:px-3" js-slider-pagination></div>
  10.     {% endif %}
  11.     <button class="icon-center swiper-button swiper-button-next {{ buttonClass is defined ? buttonClass : '' }}">
  12.         <span class="sr-only">Slide suivante</span>
  13.         <svg width="10" height="16" class="icon--{{ iconColor }}">
  14.             <use href="#icon-chevron-right-2" xlink:href="#icon-chevron-right-2"/>
  15.         </svg>
  16.     </button>
  17. </div>