aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.html
blob: 5a722185848a2ed11ed2e25a574c0890ef0ded76 (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]="[ '/c', video.byVideoChannel ]" [title]="channelLinkTitle"
  ></my-actor-avatar>

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