custom/plugins/HatslogicSwProductsAndLayoutsScheduler/src/Resources/views/storefront/page/content/detail.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/content/detail.html.twig' %}
  2. {% block page_content_section %}
  3.     <div class="cms-section {{ sectionClasses|join(' ') }}"
  4.          style="{% if sectionBgColor %}background-color: {{ sectionBgColor }};{% endif %}{% if sectionBgImg %}background-image: url({{ sectionBgImg }});background-size: {{ section.backgroundMediaMode }};{% endif %}">
  5.         {% if cmsPageVisibilityStatus is defined and cmsPageVisibilityStatus == false %}
  6.            {% sw_include "@Storefront/storefront/page/content/page-not-available.html.twig" %}
  7.         {% else %}
  8.            {% sw_include "@Storefront/storefront/section/cms-section-" ~ section.type ~ ".html.twig" %}
  9.         {% endif %}
  10.     </div>
  11. {% endblock %}