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

Open in your IDE?
  1. <section class="pb-6 lg:pb-12 border-b border-solid border-primary mb-12">
  2.     <div class="container">
  3.         <div class="row">
  4.             <div class="col-12">
  5.                 <h2 class="text-center">Featured Case Studies</h2>
  6.             </div>
  7.         </div>
  8.         <div class="row">
  9.             {% for study in studies %}
  10.             <div class="lg:col-4 mb-6 lg:mb-0">
  11.                 <hr />
  12.                 <img class="max-w-[50%] md:max-w-[30%] lg:max-w-[50%] max-h-[70px] h-auto mb-6" src="{{ imageCache('/' ~ study.client.getFullImagePath, 'cropResize', 760, 380) }}" loading="lazy" />
  13.                 <h3>{{ study.title }}</h3>
  14.                 <p>{{ study.scope|nl2br }}</p>
  15.                 <a class="btnlink btnlink-primary mt-6" href="{{ generatePath( app.request, study.linkedPageId, {'study_slug' : study.slug } ) }}">Read More</a>
  16.             </div>
  17.             {% endfor %}
  18.         </div>
  19.     </div>
  20. </section>