{% if etablissementsProches|length %}
{% set quoi = quoi ? slugify.revealQuoi(quoi) %}
<div class="estabs-proches-client">
<h3>Autres établissements à proximité</h3>
<div class="items container">
{% for proche in etablissementsProches %}
{% set urlFiche = pathBuilder.buildFiche(proche) %}
<div class="item">
<div class="inner" data-href="{{ urlFiche }}">
{% set distance = etablissement | etabDistance(proche) %}
{% if distance is not empty %}
<span class="distance">à {{ distance }}</span>
{% endif %}
<a href="{{ urlFiche }}" class="title">
{{ proche.denomination | u.truncate(60, '…', true) }}
</a>
{% if proche.ville %}
<p class="city">
{{ proche.ville | lieuLibelle }}
</p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}