templates/SaloonList/list.saloons.html.twig line 1

Open in your IDE?
  1. {% for saloon in saloons %}
  2.     <div class="col-4">
  3.         <div class="card" alt="{{ saloon.seo ? saloon.seo.phone : '' }}">
  4.             {% if saloon.thumbnail %}
  5.                 <img class="card-img-top" src="{{ responsive_asset(saloon.thumbnail.path, 'saloon_media_thumb', '357x500', 'jpg') }}" alt="{{ saloon.seo ? saloon.seo.phone : '' }}">
  6.             {% endif %}
  7.             <div class="card-body">
  8.                 <h5 class="card-title"><a href="{{ path('saloon_preview.page', {'city': saloon.city.uriIdentity, 'saloon': saloon.uriIdentity}) }}">{{ saloon.name|trans }}</a></h5>
  9.             </div>
  10.         </div>
  11.     </div>
  12. {% endfor %}
  13. {% if recommended_profiles is defined and recommended_profiles is not empty %}
  14.     {% include 'ProfileList/list.profiles.html.twig' with {
  15.         profiles: recommended_profiles,
  16.         show_total_count: false,
  17.         recommendations_fill_applied: recommendations_fill_applied|default(false),
  18.         recommendations_fill_original_count: recommendations_fill_original_count|default(saloons.totalCount|default(0))
  19.     } %}
  20. {% endif %}