templates/profile/widget/new_profiles.html.twig line 1

Open in your IDE?
  1. <div class="my-3 p-3 bg-white rounded">
  2.     <h6 class="widget-page-title border-bottom border-gray pb-2 mb-2">
  3.         {{ 'New profiles'|trans({}, 'profile_widget') }}
  4.     </h6>
  5.     {% if profiles|length %}
  6.     <div class="row-cols-3 row-cols-md-6">
  7.         {% for profile in profiles %}
  8.             <figure class="figure">
  9.                 <a href="{{ path('profile', {slug: profile.slug}) }}" title="{{ profile.name }}" data-toggle="tooltip">
  10.                     <img src="{{ asset(get_profile_avatar(profile)) }}" class="rounded figure-img img-fluid ">
  11.                     <figcaption class="figure-caption text-center">{{ profile.name }}</figcaption>
  12.                 </a>    
  13.             </figure>
  14.         {% endfor %}
  15.     </div>
  16.     {% endif %}
  17. </div>