custom/plugins/ArboroProductListingLayout/src/Resources/views/storefront/page/content/index.html.twig line 1

Open in your IDE?
  1. {#
  2. # Project:      www.betten-abc.de
  3. # Company:      arboro GmbH
  4. # Created by:   Daniel Geike
  5. # Created on:   26.04.22
  6. # Description:
  7. #}
  8. {% sw_extends "@Storefront/storefront/page/content/index.html.twig" %}
  9. {% block cms_content %}
  10.     {% if config("ArboroProductListingLayout.config.showOnListingPage") %}
  11.         <div class="cms-page"
  12.              data-current-layout="{{ config("ArboroProductListingLayout.config.defaultLayout") }}"
  13.              data-default-layout="{{ config("ArboroProductListingLayout.config.defaultLayout") }}"
  14.         >
  15. {% sw_include "@Storefront/storefront/page/content/detail.html.twig" with {'cmsPage': page.cmsPage} %}
  16.         </div>
  17.     {% else %}
  18.         {{ parent() }}
  19.     {% endif %}
  20. {% endblock %}