provide specific engine boundaries for nodejs and yarn
[oweals/peertube.git] / client / src / app / shared / video / feed.component.html
1 <div class="video-feed"
2   [ngbTooltip]="'Feeds available'"
3   placement="right auto"
4   container="body"
5 >
6   <my-global-icon
7     *ngIf="syndicationItems.length !== 0" [ngbPopover]="feedsList" [autoClose]="true" placement="bottom"
8     class="icon-syndication" role="button" iconName="syndication"
9   >
10   </my-global-icon>
11
12   <ng-template #feedsList>
13     <a *ngFor="let item of syndicationItems" [href]="item.url" target="_blank" rel="noopener noreferrer">{{ item.label }}</a>
14   </ng-template>
15 </div>