aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/video/video-feed.component.html
blob: 16116ba88aa15b29046a79806c731c5dbb6aa1a5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        
       
                                                                                                        

                                               

                          
                                                                                                                             
                
     
<div class="video-feed">
  <span
    *ngIf="syndicationItems.length !== 0" [ngbPopover]="feedsList" [autoClose]="true" placement="bottom"
    class="icon icon-syndication" role="button"
  ></span>

  <ng-template #feedsList>
    <a *ngFor="let item of syndicationItems" [href]="item.url" target="_blank" rel="noopener noreferrer">{{ item.label }}</a>
  </ng-template>
</div>