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