aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/shortcodes/video.html
diff options
context:
space:
mode:
Diffstat (limited to 'generators/hugo/themes/tdro/layouts/shortcodes/video.html')
-rw-r--r--generators/hugo/themes/tdro/layouts/shortcodes/video.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/generators/hugo/themes/tdro/layouts/shortcodes/video.html b/generators/hugo/themes/tdro/layouts/shortcodes/video.html
index d754605..ea88034 100644
--- a/generators/hugo/themes/tdro/layouts/shortcodes/video.html
+++ b/generators/hugo/themes/tdro/layouts/shortcodes/video.html
@@ -1,7 +1,7 @@
<div class="video has-text-centered">
- <video width="{{ .Get `width` }}" height="{{ .Get `height`}}" controls {{ .Get `options` | safeHTMLAttr }}>
+ <video preload="none" poster="{{ .Get `poster` }}" width="{{ .Get `width` }}" height="{{ .Get `height`}}" controls {{ .Get `options` | safeHTMLAttr }}>
<source src="{{ .Get `source` }}" type="video/mp4">
- Your browser does not support the video tag.
+ Your browser does not support the video tag.
</video>
<footer class="has-text-centered has-text-grey-dark">{{ .Inner }}</footer>
</div>