shelfy/templates/media_detail.pages.tmpl

10 lines
370 B
Cheetah
Raw Normal View History

2025-06-21 16:17:16 +00:00
<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>