<div class="my-3 p-3 bg-white rounded">
<h6 class="widget-page-title border-bottom border-gray pb-2 mb-2">
{{ 'New profiles'|trans({}, 'profile_widget') }}
</h6>
{% if profiles|length %}
<div class="row-cols-3 row-cols-md-6">
{% for profile in profiles %}
<figure class="figure">
<a href="{{ path('profile', {slug: profile.slug}) }}" title="{{ profile.name }}" data-toggle="tooltip">
<img src="{{ asset(get_profile_avatar(profile)) }}" class="rounded figure-img img-fluid ">
<figcaption class="figure-caption text-center">{{ profile.name }}</figcaption>
</a>
</figure>
{% endfor %}
</div>
{% endif %}
</div>