diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/media.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/media.html b/templates/media.html index 6302a57..188d5b4 100644 --- a/templates/media.html +++ b/templates/media.html @@ -5,13 +5,13 @@ {{range .Data.Medias}} <div class="card"> <div class="card-image"> - {{ if .IsVideo }} - <video controls muted="true" preload="metadata"> - <source src="/media/image?path_hash={{.PathHash}}" type="{{.MIMEType}}"> - </video> - {{ else }} + {{ if .IsVideo }} + <video controls muted="true" poster="/media/thumbnail?path_hash={{.PathHash}}" preload="none"> + <source src="/media/image?path_hash={{.PathHash}}" type="{{.MIMEType}}"> + </video> + {{ else }} <figure class="image is-fit"> - <img src="/media/image?path_hash={{.PathHash}}"> + <img src="/media/thumbnail?path_hash={{.PathHash}}"> </figure> {{ end }} </div> |