blob: bcd3beaf0a86259f18040ef6902b6d3531c2c297 (
plain) (
tree)
|
|
<div *ngIf="account" class="row">
<a
*ngFor="let videoChannel of videoChannels" [routerLink]="[ '/video-channels', videoChannel.uuid ]"
class="video-channel" i18n-title title="See this video channel"
>
<img [src]="videoChannel.avatarUrl" alt="Avatar" />
<div class="video-channel-display-name">{{ videoChannel.displayName }}</div>
<div i18n class="video-channel-followers">{{ videoChannel.followersCount }} subscribers</div>
</a>
</div>
|