templates/geo/parts/best-hotels.html.twig line 1

Open in your IDE?
  1. {% set bestHotelsCount = 0 %}
  2. {% for bestHotel in page.bestHotels %}
  3.     {% set bestHotelsCount = bestHotelsCount + bestHotel|length %}
  4. {% endfor %}
  5. {% if bestHotelsCount > 0 %}
  6.     <div id="best"></div>
  7.     <div class="container">
  8.         <div class="container__header">
  9.             <h3 class="container__header-title" data-anchor="best">
  10.                 {{ 'Лучшие отели'|trans }} {{ page.info.nameRd }}
  11.             </h3>
  12.         </div>
  13.         {% if page.bestHotels.5 is defined %}
  14.             {% include 'geo/parts/tour.html.twig' with {'items': page.bestHotels.5} %}
  15.         {% endif %}
  16.         {% if page.bestHotels.4 is defined %}
  17.             {% include 'geo/parts/tour.html.twig' with {'items': page.bestHotels.4} %}
  18.         {% endif %}
  19.         {% if page.bestHotels.3 is defined %}
  20.             {% include 'geo/parts/tour.html.twig' with {'items': page.bestHotels.3} %}
  21.         {% endif %}
  22.         {% if page.bestHotels.2 is defined %}
  23.             {% include 'geo/parts/tour.html.twig' with {'items': page.bestHotels.2} %}
  24.         {% endif %}
  25.         {% if page.bestHotels.1 is defined %}
  26.             {% include 'geo/parts/tour.html.twig' with {'items': page.bestHotels.1} %}
  27.         {% endif %}
  28.     </div>
  29. {% endif %}