templates/front/main/recent_search/recent_search_hotel.html.twig line 1

Open in your IDE?
  1. {% if hotel_search_history | length > 0 %}
  2. <!--Promotional Tours Area -->
  3. <section id="promotional_tours" class="section_padding_top  parallax"
  4.          style=" background-position: center;
  5.                  background-repeat: no-repeat;
  6.                  background-size: cover; ">
  7.     <div class="container">
  8.         <!-- Section Heading -->
  9.         <div class="row">
  10.             <div class="col-lg-12 col-md-12 col-sm-12 col-12">
  11.                 <div class="section_heading_center">
  12.                     <h2>{{ 'Pages.Common.Messages.HotelRecentSearch' | trans({}, 'messages_front') }}</h2>
  13.                 </div>
  14.             </div>
  15.         </div>
  16.         <div class="row">
  17.             {% for item in hotel_search_history %}
  18.                 <div class="col-lg-3">
  19.                     {{ include('front/main/recent_search/_item.html.twig', {'item' : item}) }}
  20.                 </div>
  21.             {% endfor %}
  22.         </div>
  23.     </div>
  24. </section>
  25. {% endif %}