templates/application/catalog/watched-products.html.twig line 1

Open in your IDE?
  1. {% if global.recentlyWatchedProducts(product is defined ? product.id : null)|length %}
  2.     <div class="section__item section__item--md">
  3.         <h2 class="product-add__title">Недавно просмотренные товары</h2>
  4.         <div class="product-carousel swiper a-carousel-product nav-right">
  5.             <div class="swiper-wrapper">
  6.                 {% for p in global.recentlyWatchedProducts(product is defined ? product.id : null) %}
  7.                     <div class="swiper-slide">
  8.                         {{ include('application/catalog/product-block.html.twig', {product: p}) }}
  9.                     </div>
  10.                 {% endfor %}
  11.             </div>
  12.             {% if global.recentlyWatchedProducts(product is defined ? product.id : null)|length > 1 %}
  13.                 <div class="btn-prev"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.854 12.867a.536.536 0 0 1-.708 0l-5-4.546a.426.426 0 0 1 0-.642l5-4.546a.536.536 0 0 1 .708 0 .426.426 0 0 1 0 .643L6.207 8l4.647 4.224a.426.426 0 0 1 0 .643z"/></svg></div>
  14.                 <div class="btn-next"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.146 3.133a.536.536 0 0 1 .708 0l5 4.546a.426.426 0 0 1 0 .642l-5 4.546a.536.536 0 0 1-.708 0 .426.426 0 0 1 0-.643L9.793 8 5.146 3.776a.426.426 0 0 1 0-.643z"/></svg></div>
  15.             {% endif %}
  16.         </div>
  17.     </div>
  18. {% endif %}