quack-angular/src/app/shared/views/large-user/large-user.component.html

6 lines
265 B
HTML

<div class="user-container outline">
<div [routerLink]="'/user/'+user?.username">
<img [src]="user?.picture" class="outline"> <span>{{user?.username}}</span>
</div>
<span [classList]="user?.followed ? 'follow followed' : 'follow'"></span>
</div>