templates/themes/theme/services/index.html.twig line 1

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