<div class="row services"> {% for service in services %} <div class="sm:col-6 xl:col-3 mb-6 xl:mb-0"> <div class="service"> <a href="{{ generatePath( app.request, service.linkedPageId, {'service_slug' : service.slug } ) }}"> <img class="max-w-full h-auto" src="{{ imageCache('/' ~ service.fullImage2Path, 'zoomCrop', 800, 800) }}" width="800" height="800" alt="{{ service.title }}" loading="lazy" /> <h3>{{ service.title }}</h3> </a> </div> </div> {% endfor %}</div>