templates/geo/parts/tour-list2.html.twig line 1

Open in your IDE?
  1. {% if data|length > 0 %}
  2.     <div class="container">
  3.         <div class="container__header">
  4.             <h2 class="container__header-title">
  5.                 {{ title }} {% if statusHot is defined and route in ['app_country_search_departure_city', 'app_city_search_departure_city'] %}{{ 'из'|trans }} {{ departureCity.nameRd }}{% endif %}
  6.             </h2>
  7.         </div>
  8.         {% include 'geo/parts/tour.html.twig' with {'items': data} %}
  9.     </div>
  10. {% endif %}