{% block block_page_listing_page %}
<section class="boxed-layout section-p-y lg:theme-grid p-10">
<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">
{% set element = block.slots.getSlot('left') %}
{% block block_page_listing_page_Left_inner %}
{% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
{% endblock %}
{% set element = block.slots.getSlot('middle') %}
{% block block_page_listing_page_Middle_inner %}
{% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
{% endblock %}
{% set element = block.slots.getSlot('right') %}
{% block block_page_listing_page_Right_inner %}
{% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
{% endblock %}
</div>
</section>
{% endblock %}