aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommended-videos.component.html
blob: 5b5951f99a322f59bc5bd6a1d3c8179435feec0d (plain) (tree)
1
2
3
4
5
6
7
8
9

                                           
                                                   
                  

          
                                                 

                                                                                                                                
          
                 
      
<div class="other-videos">
  <ng-container *ngIf="hasVideos$ | async">
    <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" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
      </my-video-miniature>
    </div>
  </ng-container>
</div>