templates/front/main/zones/zone1.html.twig line 1

Open in your IDE?
  1. <!-- Offer Area -->
  2. <section id="offer_area" class="section_padding_top"
  3.          style=" background-image: url({{ zone.backgroundImage }});
  4.                  background-position: center;
  5.                  background-repeat: no-repeat;
  6.                  background-size: cover; "
  7. >
  8.     <div class="container py-5">
  9.         <div class="d-flex justify-content-between align-items-center mb-4">
  10.             <div>
  11.                 <h2>{{ zone.title }}</h2>
  12.                 <small class="text-uppercase text-muted ">{{ zone.description }}</small>
  13.             </div>
  14.         </div>
  15.         <div class="row g-4">
  16.             {% for item in zone.items|slice(0, zone.itemsCount) %}
  17.                 {{ include('front/main/zones/itemZone1.html.twig', {'item': item}) }}
  18.             {% endfor %}
  19.         </div>
  20.     </div>