templates/SaloonList/list.html.twig line 1

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