aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/account-video-channels/account-video-channels.component.html
blob: 114a9e517142419263da62828c31ec94e5ff049f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<div *ngIf="account" class="row">
  <a
    *ngFor="let videoChannel of videoChannels" [routerLink]="[ '/video-channels', videoChannel.name ]"
    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>