1 <div *
ngIf=
"videoChannel" class=
"row">
5 <img [src]=
"videoChannel.avatarUrl" alt=
"Avatar" />
7 <div class=
"actor-info">
8 <div class=
"actor-names">
9 <div class=
"actor-display-name">{{ videoChannel.displayName }}
</div>
10 <div class=
"actor-name">{{ videoChannel.nameWithHost }}
11 <button ngxClipboard [cbContent]=
"videoChannel.nameWithHost" (click)=
"activateCopiedMessage()"
12 class=
"btn btn-outline-secondary btn-sm copy-button"
14 <span class=
"glyphicon glyphicon-copy"></span>
18 <my-subscribe-button #subscribeButton [videoChannels]=
"[videoChannel]"></my-subscribe-button>
20 <div i18n
class=
"actor-followers">{{ videoChannel.followersCount }} subscribers
</div>
22 <a [routerLink]=
"[ '/accounts', videoChannel.ownerBy ]" i18n-title
title=
"Go the owner account page" class=
"actor-owner">
23 <span i18n
>Created by {{ videoChannel.ownerBy }}
</span>
24 <img [src]=
"videoChannel.ownerAvatarUrl" alt=
"Owner account avatar" />
30 <a i18n
routerLink=
"videos" routerLinkActive=
"active" class=
"title-page">Videos
</a>
31 <a i18n
routerLink=
"video-playlists" routerLinkActive=
"active" class=
"title-page">Video playlists
</a>
32 <a i18n
routerLink=
"about" routerLinkActive=
"active" class=
"title-page">About
</a>
36 <div class=
"margin-content">
37 <router-outlet></router-outlet>