custom/static-plugins/SamsonCustomer/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 %}">
  5.         {% if section.backgroundMedia %}
  6.             <style>
  7.                 .hero-tiles-media-section-{{ section.id  }} img {
  8.                     position: absolute;
  9.                     pointer-events: none;
  10.                     width: 100%;
  11.                     height: 100%;
  12.                     z-index: -1;
  13.                     object-fit: cover;
  14.                 }
  15.             </style>
  16.             {% sw_include "@Storefront/storefront/component/cms-hero-tiles-media/image.html.twig" with {
  17.                 media: section.backgroundMedia,
  18.                 classes: "hero-tiles-media-section-" ~ section.id
  19.             } %}
  20.         {% endif %}
  21.         {% sw_include "@Storefront/storefront/section/cms-section-" ~ section.type ~ ".html.twig" %}
  22.     </div>
  23. {% endblock %}