templates/themes/theme/meettheteam/meettheteam-featured.html.twig line 1

Open in your IDE?
  1. <div class="row">
  2. <div class="col-12 mb-6">
  3. <p><strong>Our Team</strong></p>
  4. <h3 class="capitalize text-3xl font-black">Your Experts</h3>
  5. </div>
  6. </div>
  7. <div class="row">
  8. {% for teamMember in teamMembers %}
  9. <div class="md:col-4 col-12 mb-8">
  10. <a class="team-name" href="{{ generatePath( app.request, teamMember.linkedPageId, {'teammember_slug' : teamMember.slug } ) }}">
  11. <img class="max-w-full h-auto" src="{{ imageCache('/' ~ teamMember.getFullImagePath, 'zoomCrop', 740, 960) }}" width="546" height="708" alt="{{ teamMember.title }}" loading="lazy" />
  12. <div class="p-4" tab-index="0">
  13. <h3 class="mb-0 capitalize">{{ teamMember.title }}</h3>
  14. <p class="h5 mb-0 font-light text-white text-left">{{ teamMember.position }}</p>
  15. </div>
  16. </a>
  17. </div>
  18. {% else %}
  19. <p>No team members found</p>
  20. {% endfor %}
  21. </div>
  22. <a class="btn btn-primary" href="/team">Meet Our Team</a>
  23. {{ knp_pagination_render(teamMembers) }}