shelfy/templates/media_detail.pages.tmpl

15 lines
512 B
Cheetah
Raw Normal View History

2025-06-21 16:58:02 +00:00
<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">
2025-06-21 16:17:16 +00:00
Votre navigateur ne supporte pas la vidéo.
</video>
</div>