aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommended-videos.component.html
blob: 7cfaffec23d0cb90bae02f00296b37b173f4b0d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<div class="other-videos">
    <div i18n class="title-page title-page-single">
        Other videos
    </div>

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