aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/shared/metadata/video-avatar-channel.component.html
blob: a23152b673615356315dbb32ecbf68817deb9117 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="wrapper">
  <my-actor-avatar
    *ngIf="showChannel"
    class="channel"
    [channel]="video.channel"
    [internalHref]="[ '/c', video.byVideoChannel ]"
    [title]="channelLinkTitle"
    size="35"
  ></my-actor-avatar>

  <my-actor-avatar
    *ngIf="showAccount"
    class="account"
    [class.second-avatar]="showChannel"
    [account]="video.account"
    [internalHref]="[ '/a', video.byAccount ]"
    [title]="accountLinkTitle"
    size="35">
  </my-actor-avatar>
</div>