<div id="neighborhood-nearest-compounds">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h3 class="custom-header">{% if location.compoundFilter %}{{ 'neighborhoods.nearest_compounds'|trans }}{% else %}{{ 'neighborhoods.nearest_neighbourhoods'|trans }}{% endif %}</h3>
</div>
</div>
<div class="col-md-12">
{% for neighbourhood in nearestNeighbourhoods %}
<div class="col-md-4 col-sm-6">
{% include '@AqarmapNeighborhoodBundle/card.html.twig' with {'neighborhood': neighbourhood} %}
</div>
{% endfor %}
</div>
</div>
</div>
</div>