templates/partials/promotions_detail/promo_hotel.html.twig line 1

Open in your IDE?
  1. <section class="promo-hotel">
  2.     <div class="container">
  3.         {% for hotel in promotion.hotels  %}
  4.             <div class="promo-hotel--media">
  5.                 <div class="media-slide {% if hotel.gallery1 and hotel.gallery1.enabled and hotel.gallery1.galleryHasMedias|length > 1 %}
  6.                     js-media-slide
  7.                     {% endif %}">
  8.                     {% if hotel.gallery1 and hotel.gallery1.enabled and hotel.gallery1.medias %}
  9.                         {% for image in hotel.gallery1.medias %}
  10.                             <img src="{{ image | resize(1024)|file_url }}" alt="{{ hotel.title }}">
  11.                         {% endfor %}
  12.                     {% endif %}
  13.                 </div>
  14.             </div>
  15.         {% endfor %}
  16.         {% for hotel in promotion.hotels  %}
  17.             <div class="promo-hotel--content">
  18.                 <h3 class="promo-hotel--title">Hotel
  19.                     {{ hotel.title }}</h3>
  20.                 <div class="promo-hotel--text">{{ hotel.introduction | raw }}</div>
  21.                 <div class="promo-hotel--ksp-container">
  22.                     {% for ksp in hotel.keySellingPointsHotel %}
  23.                         <div class="promo-hotel--ksp">
  24.                             {% include 'partials/global/svg/'~ksp.iconClass~'.svg.twig' %}
  25.                             <h4 class="promo-hotel--ksp-text">{{ ksp.title }}</h4>
  26.                         </div>
  27.                     {% endfor %}
  28.                 </div>
  29.             </div>
  30.         {% endfor %}
  31.     </div>
  32. </section>