aboutsummaryrefslogtreecommitdiff
path: root/ui/html/pages/video_feed.tmpl.html
diff options
context:
space:
mode:
authorSamuel Johnson <[email protected]>2025-11-26 01:55:22 -0500
committerSamuel Johnson <[email protected]>2025-11-26 01:55:22 -0500
commitd740821200f3bb89112ed08af84decf608d91732 (patch)
tree8b12316d31983bad71a629a29bd320e41eae3fb5 /ui/html/pages/video_feed.tmpl.html
parentc72dfab37fd6f0d739ea70d42779b2a8c85e9915 (diff)
Add text RSS parser as well
Diffstat (limited to 'ui/html/pages/video_feed.tmpl.html')
-rw-r--r--ui/html/pages/video_feed.tmpl.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/html/pages/video_feed.tmpl.html b/ui/html/pages/video_feed.tmpl.html
new file mode 100644
index 0000000..83332f2
--- /dev/null
+++ b/ui/html/pages/video_feed.tmpl.html
@@ -0,0 +1,15 @@
+{{define "title"}}{{.Feed.Name}}{{end}}
+{{define "description"}}"Recent videos from {{.Feed.Name}}"{{end}}
+
+{{define "main"}}
+ {{range .Videos}}
+ <div class="card">
+ <div class="header">
+ <h4><b>{{.Title}} - {{.Published}}</b></h4>
+ <iframe class="video" src="{{.Link}}"></iframe>
+ </div>
+ <p>{{.Description}}</p>
+ </div>
+ {{end}}
+{{end}}
+