templates/location/includes/location-content.html.twig line 1

Open in your IDE?
  1. <div class="row gy-3">
  2.     {% set length = locations|length %}
  3.     {% for location in locations %}
  4.         <div class="col-xxl-4 col-xl-6 col-md-6 col-sm-12">
  5.             {{ include('includes/teaser/location-teaser.html.twig', {
  6.                 location: location,
  7.             }) }}
  8.         </div>
  9.     {% endfor %}
  10.     {% if length == 0 %}
  11.         {{ include('includes/atoms/no-results.html.twig') }}
  12.     {% endif %}
  13. </div>