{% extends "base.html.twig" %}
{% block content %}
<div class="container my-4 mb-lg-5 mt-lg-6">
<div class="row match-height-card-small g-3" data-match-height-group="card-small-group">
{% if (content.bioBlocks is defined) %}
{% for bioBlock in content.bioBlocks %}
<div class="col-12 col-md-6 col-lg-4 col-xl-3">
{{ include('@components/card-small.html.twig', {
text: bioBlock.text,
image: bioBlock.image.formats['440x200'],
link: bioBlock.link
}) }}
</div>
{% endfor %}
{% endif %}
</div>
</div>
{% endblock %}