aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/feed.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-10-18 14:35:31 +0200
committerChocobozzz <me@florianbigard.com>2018-10-18 14:35:31 +0200
commitc199c427d4ae586339822320f20f512a7a19dc3f (patch)
tree9cbe8bebc25e97d2e8086c41bcd7180dd752dbac /client/src/app/shared/video/feed.component.html
parentcdf4cb9eaf5f6bc71f7c1e1963c07575f1d2593d (diff)
downloadPeerTube-c199c427d4ae586339822320f20f512a7a19dc3f.tar.gz
PeerTube-c199c427d4ae586339822320f20f512a7a19dc3f.tar.zst
PeerTube-c199c427d4ae586339822320f20f512a7a19dc3f.zip
Better typings
Diffstat (limited to 'client/src/app/shared/video/feed.component.html')
-rw-r--r--client/src/app/shared/video/feed.component.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/app/shared/video/feed.component.html b/client/src/app/shared/video/feed.component.html
new file mode 100644
index 000000000..16116ba88
--- /dev/null
+++ b/client/src/app/shared/video/feed.component.html
@@ -0,0 +1,10 @@
1<div class="video-feed">
2 <span
3 *ngIf="syndicationItems.length !== 0" [ngbPopover]="feedsList" [autoClose]="true" placement="bottom"
4 class="icon icon-syndication" role="button"
5 ></span>
6
7 <ng-template #feedsList>
8 <a *ngFor="let item of syndicationItems" [href]="item.url" target="_blank" rel="noopener noreferrer">{{ item.label }}</a>
9 </ng-template>
10</div> \ No newline at end of file