Put "start at" at the top of the modal
[oweals/peertube.git] / client / src / app / videos / recommendations / recommended-videos.component.html
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>