templates/selection/parts/tiles-list.html.twig line 1

Open in your IDE?
  1. {% if selections|length > 0 %}
  2.     <div id="selection"></div>
  3.     <div class="container">
  4.         <div class="container__header container-selections">
  5.             <h2 class="container__header-title" data-anchor="selection">
  6.                 {{ 'Подборки'|trans }}
  7.                 {% if route in ['app_country_search', 'app_city_search'] %}
  8.                     {{ 'отелей'|trans }} {{ page.info.nameRd }}
  9.                 {% endif %}
  10.             </h2>
  11.         </div>
  12.         {% include 'selection/parts/tiles.html.twig' %}
  13.     </div>
  14. {% endif %}