templates/SaloonList/list.html.twig line 1

Open in your IDE?
  1. {% extends 'grid.html.twig' %}
  2. {% block mainContainer %}
  3.     {{ seo_top() }}
  4.     <h1>{{ seo_heading() }}</h1>
  5.     {% include 'ProfileList/geo_category_linkage.partial.html.twig' %}
  6.     <div
  7.         id="saloon-list"
  8.         class="row mb-3"
  9.         data-recommendations-fill-applied="{{ recommendations_fill_applied|default(false) ? 1 : 0 }}"
  10.         data-recommendations-fill-original-count="{{ recommendations_fill_original_count|default(saloons.totalCount|default(0)) }}"
  11.     >
  12.         {% include 'SaloonList/list.saloons.html.twig' %}
  13.     </div>
  14.     {% if ssr_recommended_profiles is defined and ssr_recommended_profiles is not empty %}
  15.         <h4>Рекоммендуемые</h4>
  16.         <div class="row mb-3">
  17.             {% include 'ProfileList/list.profiles.html.twig' with {
  18.                 profiles: ssr_recommended_profiles,
  19.                 show_total_count: false
  20.             } %}
  21.         </div>
  22.     {% endif %}
  23.     {% include 'SaloonList/_show_more.saloons.html.twig' %}
  24.     {{ porpaginas_render(saloons) }}
  25. {% endblock %}