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.
|
|
|
{{define "head"}}
|
|
|
|
<title>ytdlp-viewer | {{.FileCount}}</title>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "body"}}
|
|
|
|
<div style="text-align: center;">
|
|
|
|
<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}}
|
|
|
|
<a href="/view?id={{.Id}}">{{.Id}} - {{.Title}}</a><br />
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|