custom/plugins/RHWebCmsElements/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.     {% set rhwebSection = section.customFields.rhweb_section %}
  4.     {% if rhwebSection.color and rhwebSection.color != 'none' %}
  5.         {% set sectionClasses = ["text-#{rhwebSection.color}"]|merge(sectionClasses) %}
  6.     {% endif %}
  7.     {% if rhwebSection.backgroundColor and rhwebSection.backgroundColor != 'none' %}
  8.         {% set sectionClasses = ["rhweb-section-has-background bg-#{rhwebSection.backgroundColor}"]|merge(sectionClasses) %}
  9.     {% endif %}
  10.     {% if rhwebSection.top and rhwebSection.top != 'none' %}
  11.         {% set sectionClasses = ["rhweb-separator-#{rhwebSection.top}-top"]|merge(sectionClasses) %}
  12.     {% endif %}
  13.     {% if rhwebSection.bottom and rhwebSection.bottom != 'none' %}
  14.         {% set sectionClasses = ["rhweb-separator-#{rhwebSection.bottom}-bottom"]|merge(sectionClasses) %}
  15.     {% endif %}
  16.     {% if rhwebSection.offsetTop and rhwebSection.offsetTop != 'none' %}
  17.         {% set sectionClasses = ["rhweb-offset-#{rhwebSection.offsetTop}-top"]|merge(sectionClasses) %}
  18.     {% endif %}
  19.     {% if rhwebSection.offsetBottom and rhwebSection.offsetBottom != 'none' %}
  20.         {% set sectionClasses = ["rhweb-offset-#{rhwebSection.offsetBottom}-bottom"]|merge(sectionClasses) %}
  21.     {% endif %}
  22.     {% if rhwebSection.separatorBackground and rhwebSection.separatorBackground != 'none' %}
  23.         {% set sectionClasses = ["bg-rhweb-separator-#{rhwebSection.separatorBackground}"]|merge(sectionClasses) %}
  24.     {% endif %}
  25.     {% if rhwebSection.fixedBackground %}
  26.         {% set sectionClasses = ["bg-fixed"]|merge(sectionClasses) %}
  27.     {% endif %}
  28.     {{ parent() }}
  29. {% endblock %}