]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/video-list/shared/video-miniature.component.html
Add auto scroll to videos list
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-list / shared / video-miniature.component.html
CommitLineData
1f0215a9 1<div class="video-miniature">
501bc6c2 2 <a
0a6658fd 3 [routerLink]="['/videos/watch', video.uuid]" [attr.title]="video.description"
501bc6c2
C
4 class="video-miniature-thumbnail"
5 >
d6e32a2e 6 <img [attr.src]="video.thumbnailUrl" alt="video thumbnail" [ngClass]="{ 'blur-filter': isVideoNSFWForThisUser() }" />
92fb909c 7
383bfc83 8 <div class="video-miniature-thumbnail-overlay">
9bf9d2a5 9 {{ video.durationLabel }}
383bfc83 10 </div>
501bc6c2 11 </a>
501bc6c2 12
d6e32a2e 13 <div class="video-miniature-information">
383bfc83 14 <span class="video-miniature-name">
d6e32a2e
C
15 <a
16 class="video-miniature-name"
17 [routerLink]="['/videos/watch', video.uuid]" [attr.title]="video.name" [ngClass]="{ 'blur-filter': isVideoNSFWForThisUser() }"
18 >
19 {{ video.name }}
20 </a>
00a44645
C
21 </span>
22
9bf9d2a5
C
23 <span class="video-miniature-created-at-views">{{ video.createdAt | fromNow }} - {{ video.views | numberFormatter }} views</span>
24 <span class="video-miniature-account">{{ video.by }}</span>
501bc6c2
C
25 </div>
26</div>