PeerTube/client/src/app/shared/video/feed.component.html

16 lines
496 B
HTML

<div class="video-feed"
[ngbTooltip]="'Feeds available'"
placement="right auto"
container="body"
>
<my-global-icon
*ngIf="syndicationItems.length !== 0" [ngbPopover]="feedsList" [autoClose]="true" placement="bottom"
class="icon-syndication" role="button" iconName="syndication"
>
</my-global-icon>
<ng-template #feedsList>
<a *ngFor="let item of syndicationItems" [href]="item.url" target="_blank" rel="noopener noreferrer">{{ item.label }}</a>
</ng-template>
</div>