cctv/cmd/ui/index.html.tmpl

22 lines
554 B
Cheetah

<!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; max-width: 12em; max-height: 9em; margin-bottom: .7em;">
<a href="/media/{{ .HREF }}">
<img src="/media/{{ .Thumbnail }}" alt="{{ .Thumbnail }}"/>
<span>{{ .Thumbnail }}</span>
<br>
</a>
</div>
{{ end }}
</div>
</body>
<footer>
</footer>
</html>