ui mvp ish

This commit is contained in:
Bel LaPointe
2024-09-19 12:16:11 -04:00
parent e377a4f5db
commit 3e6d2874d5
2 changed files with 140 additions and 0 deletions

20
cmd/ui/index.html.tmpl Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<header>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/dark.css">
</header>
<body>
<div>
{{ range .Series }}
<div style="display: inline-block;">
<a href="/media/{{ .HREF }}">
<img src="/media/{{ .Thumbnail }}" alt="{{ .Thumbnail }}"/>
<p>{{ .Thumbnail }}</p>
</a>
</div>
{{ end }}
</div>
</body>
<footer>
</footer>
</html>