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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/content/index.html.twig' %}
  2. {% block page_content %}
  3.     {{ parent() }}
  4.     {% if(config('NetzpShariff6.config.showPage') and
  5.             (page.cmsPage.type == 'page' or page.cmsPage.type == 'landingpage')) %}
  6.         {% if(config('NetzpShariff6.config.excludeHomepage') and activeRoute == 'frontend.home.page') %}
  7.         {% else %}
  8.             <div class="cms-section mt-3">
  9.                 <div class="cms-section-default boxed">
  10.                     {% sw_include "@Storefront/storefront/shariff.html.twig" %}
  11.                 </div>
  12.             </div>
  13.         {% endif %}
  14.     {% endif %}
  15. {% endblock %}