]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/video-thumbnail.component.html
Check activities host
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / video-thumbnail.component.html
CommitLineData
202f6b6c
C
1<a
2 [routerLink]="['/videos/watch', video.uuid]" [attr.title]="video.name"
b1d40cff 3 class="video-thumbnail"
202f6b6c 4>
6e46de09 5 <img alt="" [attr.aria-labelledby]="video.name" [attr.src]="getImageUrl()" [ngClass]="{ 'blur-filter': nsfw }" />
202f6b6c 6
6e46de09
C
7 <div class="video-thumbnail-overlay">{{ video.durationLabel }}</div>
8
9 <div class="progress-bar" *ngIf="video.userHistory?.currentTime">
10 <div [ngStyle]="{ 'width.%': getProgressPercent() }"></div>
11 </div>
202f6b6c 12</a>