aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/video-avatar-channel.component.html
blob: 5f149cbd1155a3372a0bf3dc452e86ebe06dc550 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<div class="wrapper" [ngClass]="{ 'generic-channel': genericChannel }">
  <my-actor-avatar
    class="channel" [channel]="video.channel"
    [internalHref]="[ '/video-channels', video.byVideoChannel ]" [title]="channelLinkTitle"
  ></my-actor-avatar>

  <my-actor-avatar
    class="account" [account]="video.account"
    [internalHref]="[ '/accounts', video.byAccount ]" [title]="accountLinkTitle">
  </my-actor-avatar>
</div>