templates/front/hotel/hotel_promo.html.twig line 1

Open in your IDE?
  1. {% extends 'front/base_front.html.twig' %}
  2. {% block title %} {{ 'Pages.HotelPromo.Title'|trans({}, 'messages_front') }} {% endblock %}
  3. {% block container %}
  4.     <section id="explore_area" class="section_padding">
  5.         <div class="container">
  6.             <h2>{{ 'Pages.HotelPromo.Messages.Promotion'|trans({}, 'messages_front') }}</h2>
  7.             {% if hotelsWithPromos | length > 0 %}
  8.                 <div class="row mt-3">
  9.                     <div class="col-lg-12 col-md-12 col-sm-12 col-12">
  10.                         <div class="row mt-2">
  11.                             {% for hotel in hotelsWithPromos %}
  12.                                 <div class="col-lg-3">
  13.                                     <div class="theme_common_box_two img_hover">
  14.                                         <div class="theme_two_box_img">
  15.                                             <a href="{{ hotel.link }}">
  16.                                                 <img src="{{ hotel.image }}" data-src="{{ hotel.image }}"
  17.                                                      alt="{{ hotel.title }}"/>
  18.                                                 <div class="promo span-accroche-fiche text-white px-2 py-2 font-weight-500">
  19.                                                     {% for promo in hotel.promos %}
  20.                                                         {{ promo.name }}
  21.                                                     {% endfor %}
  22.                                                 </div>
  23.                                             </a>
  24.                                             <p><i class="fas fa-map-marker-alt"></i> {{ hotel.city }}</p>
  25.                                         </div>
  26.                                         <div class="theme_two_box_content">
  27.                                             <h4>
  28.                                                 <a href="{{ hotel.link }}">{{ hotel.title }}</a>
  29.                                             </h4>
  30.                                             {% if hotel.stars != 0 %}
  31.                                                 <span class="review_star">
  32.                                                          <span class="form-check-label">
  33.                                                              {% for j in 1 .. hotel.stars %}
  34.                                                                  <i class="fas fa-star color_theme"></i>
  35.                                                              {% endfor %}
  36.                                                          </span>
  37.                                                     </span>
  38.                                             {% endif %}
  39.                                             <h3>
  40.                                                 {% if hotel.price is defined and hotel.currency is defined %}
  41.                                                     {{ hotel.price }}<sup>{{ hotel.currency }} </sup>
  42.                                                 {% endif %}
  43.                                                 <span>
  44.                                                         {% if hotel.board is defined %}
  45.                                                             {{ hotel.board }}
  46.                                                         {% endif %}
  47.                                                     </span>
  48.                                             </h3>
  49.                                         </div>
  50.                                     </div>
  51.                                 </div>
  52.                             {% endfor %}
  53.                         </div>
  54.                     </div>
  55.                 </div>
  56.             {% endif %}
  57.         </div>
  58.     </section>
  59.     <style>
  60.         .span-accroche-fiche {
  61.             top: 15px;
  62.             position: absolute;
  63.         }
  64.         .promo {
  65.             background-color: red;
  66.             border-bottom-right-radius: 6px;
  67.             border-top-right-radius: 6px;
  68.         }
  69.     </style>
  70. {% endblock %}