custom/plugins/TomRocketsTheme/src/Resources/views/storefront/element/cms-element-blog.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@Storefront/storefront/element/cms-element-blog.html.twig" %}
  2. {% block sas_element_blog_listing_wrapper %}
  3.     <div class="row mt-4 blog-block">
  4.         <div class="col-lg-9 p-0">
  5.             {% sw_include '@Storefront/storefront/component/blog/listing.html.twig' with {
  6.                 searchResult: searchResult,
  7.                 dataUrl: dataUrl,
  8.                 filterUrl: filterUrl,
  9.                 params: params,
  10.                 config: config
  11.             } %}
  12.         </div>
  13.         <div class="col-lg-3 p-0 pl-3">
  14.             {% block sas_block_filter_panel %}
  15.                 {% if config.showCategoryFilter.value or config.showAuthorFilter.value %}
  16.                     <div id="filter-panel-wrapper"
  17.                          class="filter-panel-wrapper d-block"
  18.                          data-offcanvas-filter-content="true">
  19.                         {% sw_include '@Storefront/storefront/component/listing/blog-filter-panel.html.twig' with {
  20.                             listing: searchResult,
  21.                             sidebar: false
  22.                         } %}
  23.                     </div>
  24.                 {% endif %}
  25.             {% endblock %}
  26.         </div>
  27.     </div>
  28. {% endblock %}