{% for saloon in saloons %}
<div class="col-4">
<div class="card" alt="{{ saloon.seo ? saloon.seo.phone : '' }}">
{% if saloon.thumbnail %}
<img class="card-img-top" src="{{ responsive_asset(saloon.thumbnail.path, 'saloon_media_thumb', '357x500', 'jpg') }}" alt="{{ saloon.seo ? saloon.seo.phone : '' }}">
{% endif %}
<div class="card-body">
<h5 class="card-title"><a href="{{ path('saloon_preview.page', {'city': saloon.city.uriIdentity, 'saloon': saloon.uriIdentity}) }}">{{ saloon.name|trans }}</a></h5>
</div>
</div>
</div>
{% endfor %}
{% if recommended_profiles is defined and recommended_profiles is not empty %}
{% include 'ProfileList/list.profiles.html.twig' with {
profiles: recommended_profiles,
show_total_count: false,
recommendations_fill_applied: recommendations_fill_applied|default(false),
recommendations_fill_original_count: recommendations_fill_original_count|default(saloons.totalCount|default(0))
} %}
{% endif %}