src/Aqarmap/Bundle/NeighborhoodBundle/Resources/views/neighbourhoodsFeaturedSection.html.twig line 1

Open in your IDE?
  1. <div id="neighborhood-nearest-compounds">
  2.     <div class="container">
  3.         <div class="row">
  4.             <div class="col-md-12">
  5.                 <div class="page-header">
  6.                     <h3 class="custom-header">{% if location.compoundFilter %}{{ 'neighborhoods.nearest_compounds'|trans }}{% else %}{{ 'neighborhoods.nearest_neighbourhoods'|trans }}{% endif %}</h3>
  7.                 </div>
  8.             </div>
  9.             <div class="col-md-12">
  10.                 {% for neighbourhood in nearestNeighbourhoods %}
  11.                     <div class="col-md-4 col-sm-6">
  12.                         {% include '@AqarmapNeighborhoodBundle/card.html.twig' with {'neighborhood': neighbourhood} %}
  13.                     </div>
  14.                 {% endfor %}
  15.             </div>
  16.         </div>
  17.     </div>
  18. </div>