]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+video-channels/video-channels.component.html
Prepare i18n files
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.component.html
CommitLineData
170726f5
C
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">
7de6afdf
C
8 <div class="actor-names">
9 <div class="actor-display-name">{{ videoChannel.displayName }}</div>
10 </div>
170726f5 11 <div class="actor-followers">{{ videoChannel.followersCount }} subscribers</div>
a4f99a76 12
ad9e39fb 13 <a [routerLink]="[ '/accounts', videoChannel.ownerBy ]" title="Go the owner account page" class="actor-owner">
a4f99a76
C
14 <span>Created by {{ videoChannel.ownerBy }}</span>
15 <img [src]="videoChannel.ownerAvatarUrl" alt="Owner account avatar" />
16 </a>
170726f5
C
17 </div>
18 </div>
19
20 <div class="links">
21 <a routerLink="videos" routerLinkActive="active" class="title-page">Videos</a>
22
23 <a routerLink="about" routerLinkActive="active" class="title-page">About</a>
24 </div>
25 </div>
26
27 <div class="margin-content">
28 <router-outlet></router-outlet>
29 </div>
30</div>