]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-tables/video-cell.component.html
Update angular
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-tables / video-cell.component.html
CommitLineData
33f6dce1
C
1<a [href]="getVideoUrl()" class="table-video-link" [title]="video.name" target="_blank" rel="noopener noreferrer">
2 <div class="table-video">
3 <div class="table-video-image">
4 <img [src]="video.thumbnailPath">
5
6 <ng-content select="[image]"></ng-content>
7 </div>
8
9 <div class="table-video-text">
10 <div>
11 <ng-content select="[name]"></ng-content>
12
13 {{ video.name }}
14 </div>
15
b788e691 16 <div class="muted">by {{ video.channel?.displayName }} on {{ video.channel?.host }} </div>
33f6dce1
C
17 </div>
18 </div>
19</a>