aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/feeds/feed.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/shared-main/feeds/feed.component.html')
-rw-r--r--client/src/app/shared/shared-main/feeds/feed.component.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-main/feeds/feed.component.html b/client/src/app/shared/shared-main/feeds/feed.component.html
new file mode 100644
index 000000000..ac0b1f454
--- /dev/null
+++ b/client/src/app/shared/shared-main/feeds/feed.component.html
@@ -0,0 +1,15 @@
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>