custom/plugins/SemesManufacturerPlus/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 cms_breadcrumb %}
  3.     {% if semesManufacturer %}
  4.         {% sw_include "@Storefront/storefront/layout/manufacturerBreadcrumb.html.twig" %}
  5.     {% else %}
  6.         {{ parent() }}
  7.     {% endif %}
  8. {% endblock %}
  9.  {% block cms_content %}
  10.     {% if semesManufacturer %}
  11.         {% set cmsPageClasses = ('cms-page ' ~ page.cmsPage.cssClass|striptags)|trim %}
  12.         <div class="{{ cmsPageClasses }} is-manufacturer">
  13.             {% block page_content_blocks %}
  14.                 {% sw_include "@Storefront/storefront/page/content/detail.html.twig" with {'cmsPage': page.cmsPage} %}
  15.             {% endblock %}
  16.         </div>
  17.     {% else %}
  18.         {{ parent() }}
  19.     {% endif %}
  20. {% endblock %}