custom/static-plugins/NdTheme/src/Resources/views/storefront/block/cms-block-triple-page-listing.html.twig line 1

Open in your IDE?
  1. {% block block_page_listing_page %}
  2.     <section class="boxed-layout section-p-y lg:theme-grid p-10">
  3.         <div class="grid gap-10 lg:col-start-2 lg:col-end-12 lg:grid-cols-3 lg:gap-20 2xl:grid-gap-x-28 lg:grid-flow-col">
  4.             {% set element = block.slots.getSlot('left') %}
  5.             {% block block_page_listing_page_Left_inner %}
  6.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  7.             {% endblock %}
  8.             {% set element = block.slots.getSlot('middle') %}
  9.             {% block block_page_listing_page_Middle_inner %}
  10.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  11.             {% endblock %}
  12.             {% set element = block.slots.getSlot('right') %}
  13.             {% block block_page_listing_page_Right_inner %}
  14.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  15.             {% endblock %}
  16.         </div>
  17.     </section>
  18. {% endblock %}