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

Open in your IDE?
  1. <section class="featured-accreditations">
  2. <div class="container">
  3. {% for accreditation in accreditations %}
  4. <div class="accreditation">
  5. {% if accreditation.link %}<a href="{{ accreditation.link }}">{% endif %}
  6. {% if accreditation.image %}
  7. <img
  8. src="{{ imageCache('/' ~ accreditation.getFullImagePath, 'cropResize', 330, 330) }}"
  9. alt="{{ accreditation.title }}"
  10. >
  11. {% endif %}
  12. {% if accreditation.link %}</a>{% endif %}
  13. </div>
  14. {% endfor %}
  15. </div>
  16. <div class="container text-center">
  17. <a
  18. href="{{ path('router', { slug: 'accreditations' }) }}"
  19. class="button mx-auto"
  20. >View all Accreditations</a
  21. >
  22. </div>
  23. {{ knp_pagination_render(accreditations) }}
  24. </section>