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