shelfy/templates/media_list.pages.tmpl

20 lines
548 B
Cheetah
Raw Normal View History

2025-06-21 16:35:32 +00:00
<div class="media grid grid-cols-4 gap-4">
{{range .MediaItems}}
<div class="card p-2 rounded shadow">
2025-06-21 16:30:21 +00:00
<a
2025-06-21 16:35:32 +00:00
href="#"
hx-get="/media/0?path={{urlquery .FilePath}}"
2025-06-21 16:30:21 +00:00
hx-target="#content" hx-swap="innerHTML"
>
2025-06-21 16:35:32 +00:00
<img src="{{.ThumbURL}}" alt="{{.Title}}" class="w-full h-32 object-cover rounded" />
<div class="mt-2">
<h3 class="text-sm font-semibold truncate">{{.Title}}</h3>
{{if .Duration}}
<small>{{.DurationFmt}}</small>
{{end}}
</div>
2025-06-21 16:30:21 +00:00
</a>
</div>
{{end}}
</div>