templates/widget/catalog/default.html.twig line 1

Open in your IDE?
  1. <div class="site-block site-block_gray catalog">
  2.     <div class="container">
  3.         <h1 class="site-heading">{{ title|default|raw }}</h1>
  4.     </div>
  5.     {% if is_show_children_category is defined and is_show_children_category %}
  6.         <div class="container">
  7.             <div class="catalog__categories-list">
  8.                 {% for children in page.childrens|filter(v => v.isActive) %}
  9.                     <a href="{{ children.uri }}" class="item {{ children.lft <= page.lft and children.rgt >= page.rgt ? 'current' }}">{{ children.name }}</a>
  10.                 {% endfor %}
  11.             </div>
  12.         </div>
  13.     {% endif %}
  14.     {% if product_item_list %}
  15.         <div class="container catalog-products">
  16.             {% for product_item in product_item_list %}
  17.                 <a href="{{ path('mldev-front-product-show', { 'id': product_item.id }) }}" class="catalog__item catalog__item_product">
  18.                     <div class="item__image">
  19.                         {% if product_item.product.images|length %}
  20.                             <img src="{{ asset(product_item.product.images.first.uri) }}" title="{{ product_item.product.images.first.title|default(product_item.name) }}" alt="{{ product_item.product.images.first.alt|default(product_item.name) }}">
  21.                         {% endif %}
  22.                     </div>
  23.                     <div class="item__name">{{ product_item.name }}</div>
  24.                     <div class="item__more">
  25.                         <span>подробнее</span>
  26.                         <svg>
  27.                             <use xlink:href="/images/sprite..svg#arrow-diagonal" />
  28.                         </svg>
  29.                     </div>
  30.                 </a>
  31.             {% endfor %}
  32.         </div>
  33.     {% else %}
  34.         <div class="container">
  35.             <p>К сожалению, нет товаров, удовлетворяющих выбранным условиям.<br>Попробуйте изменить критерии поиска.</p>
  36.         </div>
  37.     {% endif %}
  38.     <div class="catalog__bg">
  39.         <img src="{{ asset('images/products..svg') }}" alt="">
  40.     </div>
  41. </div>