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

Open in your IDE?
  1. {% if hotels|length > 0 %}
  2.     <div class="container">
  3.         <div class="container__header">
  4.             <h3 class="container__header-title" data-anchor="best">
  5.                 {{ 'Популярные отели'|trans }} {{ page.info.nameRd }}
  6.             </h3>
  7.         </div>
  8.         {% include 'geo/parts/hotels.html.twig' with {'hotels': hotels} %}
  9.     </div>
  10. {% endif %}