custom/plugins/OttMoebelfirstTheme/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.     {# Hide element storefront/page/product-detail/articlequestions/articlequestions.html.twig if product is not available #}
  4.     {% if not ('ott-elw-customer-question-section' in section.cssClass and 0 >= page.product.availableStock) %}
  5.         <div class="cms-section {{ sectionClasses|join(' ') }}"
  6.              style="{% if sectionBgColor %}background-color: {{ sectionBgColor }};{% endif %}{% if sectionBgImg %}background-image: url({{ sectionBgImg }});background-size: {{ section.backgroundMediaMode }};{% endif %}"
  7.         >
  8.             {% sw_include "@Storefront/storefront/section/cms-section-" ~ section.type ~ ".html.twig" %}
  9.         </div>
  10.     {% endif %}
  11. {% endblock %}