You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
827 B

<a href="{{ path('profil_show', {id: profil.id}) }}">
<div class="profile-card">
<div class="profile-user">
<img src="https://api.dicebear.com/8.x/big-smile/svg?translateY=-5&seed={{ profil.name }}" alt="Profile Image">
<span class="profile-name">{{ profil.name }}</span>
<div class="profile-info-element">
<span>{{ profil.posts|length }}</span>
<span>Posts</span>
</div>
<div class="profile-info-element">
<span>{{ profil.followers|length }}</span>
<span>Followers</span>
</div>
<div class="profile-info-element">
<span>{{ profil.following|length }}</span>
<span>Following</span>
</div>
</div>
</div>
</a>