aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/shortcodes/video.html
blob: ea8803453049bc92257a9e00680051c3caa23a6d (plain)
1
2
3
4
5
6
7
<div class="video has-text-centered">
  <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.
  </video>
  <footer class="has-text-centered has-text-grey-dark">{{ .Inner }}</footer>
</div>