aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-tables/video-cell.component.html
blob: 38e7dea172f7f47e21c02b8d169329a92333d1e7 (plain) (tree)
1
2
3
4


                                                                                                                  
                                              










                                                 
                                                                                                


          
<a [href]="getVideoUrl()" class="table-video-link" [title]="video.name" target="_blank" rel="noopener noreferrer">
  <div class="table-video">
    <div class="table-video-image">
      <img [src]="video.thumbnailPath" alt="">

      <ng-content select="[image]"></ng-content>
    </div>

    <div class="table-video-text">
      <div>
        <ng-content select="[name]"></ng-content>

        {{ video.name }}
      </div>

      <div class="muted">by {{ video.channel?.displayName }} on {{ video.channel?.host }} </div>
    </div>
  </div>
</a>