{% load wagtailimages_tags %}
{% if clients %} {% include "patterns/atoms/section-title/section-title.html" with title=title %} {% endif %}
{% if clients %}
    {% for client_logo in clients %}
  • {% if client_logo.image %} {% image client_logo.image width-400 class="client-item__image" loading="lazy" %} {% else %} {# this is coming from a StreamField #} {% image client_logo width-400 class="client-item__image" loading="lazy" %} {% endif %}
  • {% endfor %}
{% endif %} {% if quotes %}
{% include "patterns/molecules/quote-slider/quote-slider.html" with items=quotes %}
{% endif %}