blob: 16116ba88aa15b29046a79806c731c5dbb6aa1a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<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>
|