templates/partials/resort-facitilies.html.twig line 1

Open in your IDE?
  1. <section class="stretcher-wrapper" id="_facitilies">
  2.     <div class="section-header">
  3.         <div class="container">
  4.             <h2 class="title"><span>{{ 'apart'|trans }}</span>-{{ 'hotel'|trans }}</h2>
  5.             <p>
  6.                 {{ 'A unique place surrounded by a garden with a large swimming pool'|trans }}
  7.             </p>
  8.         </div>
  9.     </div>
  10.     <ul class="stretcher">
  11.         {% for facitilie in facitilies %}
  12.             <li class="stretcher-item _stretcher" style="background-image:url({{ asset('/HotelImages/details/'~facitilie.image) }});">
  13.                 <div class="stretcher-logo">
  14.                     <div class="text">
  15.                         <span class="text-intro h4">{{ facitilie.title }}</span>
  16.                     </div>
  17.                 </div>
  18.                 <figure>
  19.                     <h4>{{ facitilie.title }}</h4>
  20.                     <figcaption>{{ facitilie.subtitle }}</figcaption>
  21.                 </figure>
  22.             </li>
  23.         {% endfor %}
  24.     </ul>
  25. </section>