aboutsummaryrefslogtreecommitdiff
path: root/ui/html/pages/video_feed.tmpl.html
blob: 373a62d85972bb4b637cb49a5d7cd95d44786b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{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>
                <div class="video_container">
                    <iframe src="{{.Link}}"></iframe>
                </div>
            </div>
            <p>{{.Description}}</p>
        </div>
    {{end}}
{{end}}