blob: 2e687a7b9e993235d476daa84b491dd6a1fda2d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<div class="video-feed">
<span
*ngIf="syndicationItems.length !== 0" [ngbPopover]="feedsList" 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>
|