shelfy/templates/media_detail.pages.tmpl
2025-06-21 18:58:02 +02:00

15 lines
512 B
Cheetah

<div class="detail p-4">
<h1 class="text-2xl font-bold mb-4">{{.item.Title}}</h1>
{{with .item.Summary}}
<p class="mb-4">{{.}}</p>
{{end}}
{{with .item.DurationFmt}}
<small class="text-gray-500">{{.}}</small>
{{end}}
<img src="{{.item.ThumbURL}}" alt="{{.item.Title}}" class="cover mb-4 rounded shadow" />
<video controls autoplay width="100%" class="rounded shadow">
<source src="{{.item.StreamURL}}" type="video/mp4">
Votre navigateur ne supporte pas la vidéo.
</video>
</div>