templates/home/_slider.twig line 1

Open in your IDE?
  1. <section class="komili-home-hero owl-carousel">
  2.     {% for item in sliderItemPaginator.result %}
  3.     <div class="hero-item">
  4.         <a {% if item.pathUrl %}href="{{ item.pathUrl }}"{% else %}href="javascript:;" {% endif %}>
  5.             <img src="{{ item.image.url }}" alt="">
  6.         </a>
  7.     </div>
  8.     {% endfor %}
  9. </section>