aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/shortcodes/video.html
blob: 47d0c46ed84ef29da453ac1fcb5f9c18f6741415 (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 | markdownify }}</footer>
</div>