<div class="row gy-3"> {% set length = contactPersons|length %} {% for contactPerson in contactPersons %} <div class="col-xxl-4 col-xl-6 col-md-6 col-sm-12"> {{ include('includes/teaser/contact-person-teaser.html.twig', { contactPerson: contactPerson, }) }} </div> {% endfor %} {% if length == 0 %} {{ include('includes/atoms/no-results.html.twig') }} {% endif %}</div>