templates/bundles/SyliusShopBundle/Homepage/_best_selling.html.twig line 1

Open in your IDE?
  1. <div class="ui three cards" id="products">
  2.     <div class="swiper-flagshipProducts-button-prev"></div>
  3.     <!-- Slider main container -->
  4.     <div class="swiper swiper-flagshipProducts swiper-flagshipProducts--{{grid}}" data-slidesnumber={{grid}}>
  5.         <!-- Additional required wrapper -->
  6.         <div class="swiper-wrapper" >
  7.             <!-- Slides -->
  8.             {% if products is defined and products is not empty %}
  9.                 {% for product in products %}
  10.                     {{ render(url('sylius_shop_partial_product_show_by_slug', {
  11.                         'slug': product.slug,
  12.                         'template': '@SyliusShop/Product/_box.html.twig'
  13.                     })) }}
  14.                 {% endfor %}
  15.             {% endif %}
  16.         </div>
  17.         <!-- If we need pagination -->
  18.         <div class="swiper-pagination-flagshipProducts"></div>
  19.         <!-- If we need navigation buttons -->
  20.     </div>
  21.     <div class="swiper-flagshipProducts-button-next"></div>
  22. </div>