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

10 lines
370 B
Cheetah

<div class="detail">
<img src="{{.item.UserThumbURL}}" alt="{{.item.Title}}" class="cover">
<h1>{{.item.Title}}</h1>
{{with .item.Summary}}<p>{{.}}</p>{{end}}
<video controls autoplay width="100%" poster="{{.item.UserThumbURL}}">
<source src="/stream/{{.item.MediaPartID}}" type="video/mp4">
Votre navigateur ne supporte pas la vidéo.
</video>
</div>