custom/static-plugins/NdTheme/src/Resources/views/storefront/block/cms-block-two-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-2 lg:gap-20 2xl:gap-x-28 lg:grid-flow-col">
  4.             {% set element = block.slots.getSlot('left') %}
  5.             {% block block_page_listing_page_Top_inner %}
  6.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  7.             {% endblock %}
  8.             {% set element = block.slots.getSlot('right') %}
  9.             {% block block_page_listing_page_Bottom_inner %}
  10.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  11.             {% endblock %}
  12.         </div>
  13.     </section>
  14. {% endblock %}