You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
598 B
23 lines
598 B
{{define "head"}}
|
|
<title>ytdlp-viewer | {{.FileCount}} videos</title>
|
|
{{end}}
|
|
|
|
{{define "body"}}
|
|
<div>
|
|
<h1>yt-dlp Viewer</h1>
|
|
<h2>{{.FileCount}} files in this archive</h2>
|
|
|
|
<form action="/search" method="get">
|
|
<label>
|
|
Search term:
|
|
<input type="text" name="term" required>
|
|
</label>
|
|
</form>
|
|
|
|
{{range .Files}}
|
|
<p><a href="/view?id={{.Id}}">{{.Id}} - {{.Title}}</a>
|
|
{{ if .Metadata.Channel }} [M] {{ end }}
|
|
{{ if .Metadata.Channel }} - {{.Metadata.Channel }} {{ end }}<br /></p>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
|