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

Open in your IDE?
  1. {% if studies|length > 0 %}
  2. <div class="featured-case-studies">
  3. {% for study in studies %}
  4. <a class="featured-case-study" href="{{generatePath( app.request, study.linkedPageId, {'casestudy_slug': study.slug} )}}">
  5. <div class="featured-case-study__image">
  6. {% if study.logo %}
  7. <img src="{{ imageCache('/userfiles/images/casestudies/' ~ study.logo, 'cropResize', 320, 160) }}" alt="{{ study.quote}}">
  8. {% else %}
  9. <img class="no-max" src="{{ imageCache('/' ~ study.getFullImagePath, 'zoomCrop', 576, 384) }}" alt="{{ study.quote }}">
  10. {% endif %}
  11. </div>
  12. <h4 class="text-heading-4">{{ study.title }}</h4>
  13. </a>
  14. {% endfor %}
  15. </div>
  16. {% endif %}