diff options
Diffstat (limited to 'client/src/app/videos/recommendations/recommended-videos.component.html')
-rw-r--r-- | client/src/app/videos/recommendations/recommended-videos.component.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/app/videos/recommendations/recommended-videos.component.html b/client/src/app/videos/recommendations/recommended-videos.component.html new file mode 100644 index 000000000..7cfaffec2 --- /dev/null +++ b/client/src/app/videos/recommendations/recommended-videos.component.html | |||
@@ -0,0 +1,11 @@ | |||
1 | <div class="other-videos"> | ||
2 | <div i18n class="title-page title-page-single"> | ||
3 | Other videos | ||
4 | </div> | ||
5 | |||
6 | <ng-container *ngIf="hasVideos$ | async"> | ||
7 | <div *ngFor="let video of (videos$ | async)"> | ||
8 | <my-video-miniature [video]="video" [user]="user"></my-video-miniature> | ||
9 | </div> | ||
10 | </ng-container> | ||
11 | </div> | ||