custom/static-plugins/CytexTheme/src/Resources/views/storefront/component/listing/filter-panel.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/listing/filter-panel.html.twig' %}
  2. {% block component_filter_panel_items_container %}
  3.     <div class="filter-panel-items-container">
  4.         {% block component_filter_panel_item_manufacturer %}
  5.             {{ parent() }}
  6.         {% endblock %}
  7.         {% block component_filter_panel_item_properties %}
  8.             {{ parent() }}
  9.         {% endblock %}
  10.         {% block component_filter_panel_item_price %}
  11.             {{ parent() }}
  12.         {% endblock %}
  13.         {% block component_filter_panel_item_rating_select %}
  14.             {{ parent() }}
  15.         {% endblock %}
  16.         {% block component_filter_panel_item_shipping_free %}
  17.             {{ parent() }}
  18.         {% endblock %}
  19.         {% sw_include '@Storefront/storefront/component/sorting.html.twig' with {
  20.             current: listing.sorting,
  21.             sortings: listing.availableSortings
  22.         } %}
  23.     </div>
  24. {% endblock %}