]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-channels/video-channels.component.html
Add ability to set a name to a channel
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.component.html
1 <div *ngIf="videoChannel" class="row">
2 <div class="sub-menu">
3
4 <div class="actor">
5 <img [src]="videoChannel.avatarUrl" alt="Avatar" />
6
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 }}</div>
11 </div>
12 <div i18n class="actor-followers">{{ videoChannel.followersCount }} subscribers</div>
13
14 <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" i18n-title title="Go the owner account page" class="actor-owner">
15 <span i18n>Created by {{ videoChannel.ownerBy }}</span>
16 <img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" />
17 </a>
18 </div>
19 </div>
20
21 <div class="links">
22 <a i18n routerLink="videos" routerLinkActive="active" class="title-page">Videos</a>
23
24 <a i18n routerLink="about" routerLinkActive="active" class="title-page">About</a>
25 </div>
26 </div>
27
28 <div class="margin-content">
29 <router-outlet></router-outlet>
30 </div>
31 </div>