vendor/shopware/storefront/Resources/views/storefront/page/search/search-pagelet.html.twig line 1

Open in your IDE?
  1. {% set listingColumns = 'col-sm-6 col-lg-4 col-xl-3' %}
  2. {% block element_product_listing_wrapper %}
  3.     {% sw_include '@Storefront/storefront/element/cms-element-sidebar-filter.html.twig' with {
  4.         listing: page.listing,
  5.         sidebar: false
  6.     } %}
  7.     {% sw_include '@Storefront/storefront/component/product/listing.html.twig' with {
  8.         searchResult: page.listing,
  9.         dataUrl: url('widgets.search.pagelet.v2'),
  10.         filterUrl: url('widgets.search.filter'),
  11.         params: { search: page.searchTerm },
  12.         sidebar: 0,
  13.         boxLayout: 'minimal',
  14.         displayMode: ''
  15.     } %}
  16. {% endblock %}