diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-06-26 22:26:10 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-06-26 22:40:16 +0200 |
commit | 4d930c0c8cb585979798fac2bb254f991faa62fb (patch) | |
tree | 0c33e0e0f2a2f47b0f64843f7d9a3eb299abb260 /templates/media.html | |
parent | d4e1ca3a48e74573df6965ceee217e119ff899ae (diff) | |
download | lens-4d930c0c8cb585979798fac2bb254f991faa62fb.tar.gz lens-4d930c0c8cb585979798fac2bb254f991faa62fb.tar.bz2 lens-4d930c0c8cb585979798fac2bb254f991faa62fb.zip |
feat: Add initial user setup
Diffstat (limited to 'templates/media.html')
-rw-r--r-- | templates/media.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/media.html b/templates/media.html index 478d8ae..6302a57 100644 --- a/templates/media.html +++ b/templates/media.html @@ -5,9 +5,15 @@ {{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 }} <figure class="image is-fit"> - <img src="/media/image?path_hash={{.PathHash}}"> + <img src="/media/image?path_hash={{.PathHash}}"> </figure> + {{ end }} </div> </div> {{end}} |