custom/static-plugins/marketing-tools/src/Resources/views/storefront/component/product/banner/banner.html.twig line 1

Open in your IDE?
  1. {% block wexo_category_banner %}
  2.     {% set isSidebar = section and section.type == 'sidebar' %}
  3.     {% set columnsNew = {
  4.         1: listingColumns,
  5.         2: isSidebar ? 'col-sm-12 col-lg-12 col-xl-8' : 'col-sm-12 col-lg-8 col-xl-6',
  6.         3: isSidebar ? 'col-sm-12 col-lg-12 col-xl-12' : 'col-sm-12 col-lg-12 col-xl-9',
  7.         4: 'col-sm-12 col-lg-12 col-xl-12'
  8.     } %}
  9.     {% set index = loop.index %}
  10.     {% block wexo_category_banner_loop %}
  11.         {% for banner in banners|filter(banner => index in banner.positions) %}
  12.             {% block wexo_category_banner_loop_item %}
  13.                 {% sw_include "@WexoCategoryBanner/storefront/component/product/banner/banner-item.html.twig" %}
  14.             {% endblock %}
  15.         {% endfor %}
  16.     {% endblock %}
  17. {% endblock %}