templates/themes/theme/casestudies/casestudies.html.twig line 1

Open in your IDE?
  1. <div class="container">
  2.     <div class="row">
  3.         {% for study in studies %}
  4.             <div class="md:col-6">
  5.                 <a class="block mb-12 img-hover" href="{{ generatePath(app.request, study.linkedPageId, { 'caseStudy_slug': study.slug }) }}">
  6.                     <div class="article-img">
  7.                         <img class="max-w-full h-auto mb-8" src="{{ imageCache('/' ~ study.getFullImage5Path, 'zoomCrop', 1040, 720) }}" width="670" height="464" alt="{{ study.clientName }}">
  8.                     </div>
  9.                     <div class="flex justify-between items-stretch">
  10.                         {% if study.image %}
  11.                             <div class="w-1/2">
  12.                                 <img class="h-auto max-h-[60px] w-auto max-w-full mb-3" src="{{ imageCache('/'~ study.getFullImagePath, "cropResize", 200, 200) }}" height="100" width="100" alt="{{ study.clientName }}" loading="lazy" />
  13.                             </div>
  14.                         {% endif %}
  15.                         <div class="{% if study.image %}w-1/2 border-l border-dark pl-4 {% else %}w-full{% endif %} flex flex-col justify-center">
  16.                             <p class="text-sm mb-0 text-secondary"><strong>Project</strong></p>
  17.                             <h3 class="capitalize text-dark mt-0 mb-0">{{ study.projectName }}</h3>
  18.                             {% if study.createdAt %}
  19.                                 <p class="text-sm text-dark mb-0">{{ study.createdAt|date('d F Y') }}</p>
  20.                             {% endif %}
  21.                         </div>
  22.                     </div>
  23.                 </a>
  24.             </div>
  25.         {% else %}
  26.             <div class="col-12">
  27.                 <p>No case studies found</p>
  28.             </div>
  29.         {% endfor %}
  30.     </div>
  31. </div>
  32. {{ knp_pagination_render(studies) }}