mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
14 lines
372 B
HTML
14 lines
372 B
HTML
|
|
<div class="video-feed">
|
||
|
|
<span *ngIf="(syndicationItems | myObjectLength) >= 1" class="icon icon-syndication"
|
||
|
|
[popover]="feedsList"
|
||
|
|
placement="bottom"
|
||
|
|
[outsideClick]="true">
|
||
|
|
</span>
|
||
|
|
|
||
|
|
<ng-template #feedsList>
|
||
|
|
<div *ngFor="let key of syndicationItems | keys">
|
||
|
|
<a [href]="syndicationItems[key]">{{ key }}</a>
|
||
|
|
</div>
|
||
|
|
</ng-template>
|
||
|
|
</div>
|
||
|
|
|