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

Open in your IDE?
  1. {#{% sw_extends '@zenitPlatformStratus/storefront/page/content/detail.html.twig' %}#}
  2. {% sw_extends '@Storefront/storefront/page/content/detail.html.twig' %}
  3. {% block page_content_section  %}
  4.     <div class="cms-section {{ layout }} {{ sectionClasses|join(' ') }}"
  5.             {# @fourtwosix-edit: Convert Section name in kebab-case (all lower) to get the section id #}
  6.             {% if section.name %} id="{{ section.name|replace({' ': '-'})|lower }}" {% endif %}
  7.             {# @fourtwosix-edit: end#}
  8.          style="{% if sectionBgAttachment %}background-attachment: {{ sectionBgAttachment }};{% endif %}{% if sectionBgPosition %}background-position: {{ sectionBgPosition }};{% endif %}{% if sectionBgColor %}background-color: {{ sectionBgColor }};{% endif %}{% if sectionBgImg %}background-image: url('{{ sectionBgImg }}');background-size: {{ sectionBgImgMode }};{% endif %}">
  9.         {% if sectionBgOpacity < 100 and sectionBgColor %}
  10.             <div class="cms-section-bg-color-overlay"
  11.                  style="background-color: {{ sectionBgColor }}; opacity: {{ (100 - sectionBgOpacity|number_format) / 100 }};">
  12.             </div>
  13.         {% endif %}
  14.         {% sw_include "@Storefront/storefront/section/cms-section-" ~ section.type ~ ".html.twig" %}
  15.     </div>
  16. {% endblock %}