diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-03-24 17:27:09 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-03-24 17:27:09 +0100 |
commit | 6d90d7cb8ac6e69179ba4a94cda351a0341c943f (patch) | |
tree | 79b195fdfbbd8534768a94976f3bd37e86ffd50e /templates | |
parent | c7031e6eee2f68586785fd60cc7ada4753346a76 (diff) |
Enable controls on video.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/video.mdwn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/video.mdwn b/templates/video.mdwn index 63400de..098ef71 100644 --- a/templates/video.mdwn +++ b/templates/video.mdwn @@ -1,6 +1,6 @@ <div class="video"> <h2><TMPL_VAR title></h2> -<video playsinline autoplay muted loop poster="//media.couchdesign.dk/<TMPL_VAR stem>.jpg"> +<video playsinline autoplay muted loop poster="//media.couchdesign.dk/<TMPL_VAR stem>.jpg" controls> <TMPL_UNLESS nomp4><source src="//media.couchdesign.dk/<TMPL_VAR stem>.webm" type="video/webm" /> </TMPL_UNLESS><TMPL_UNLESS nowebm><source src="//media.couchdesign.dk/<TMPL_VAR stem>.mp4" type="video/mp4" /> </TMPL_UNLESS><img src="//media.couchdesign.dk/<TMPL_VAR stem>.jpg" width="<TMPL_VAR width>" height="<TMPL_VAR height>" |