aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommended-videos.component.html
blob: 73f9f0fe113d0097ea6d3ff456893ce5f6017f51 (plain) (blame)
1
2
3
4
5
6
7
8
9
<div *ngIf="hasVideos$ | async" class="other-videos">
    <div i18n class="title-page title-page-single">
        Other videos
    </div>

    <div *ngFor="let video of (videos$ | async)">
        <my-video-miniature [video]="video" [user]="user"></my-video-miniature>
    </div>
</div>