custom/plugins/HyBuys/src/Resources/views/storefront/page/search/search-pagelet.html.twig line 1

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