aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/shortcodes/video.html
blob: 719e2127d7bfa08f89e604ded75964fcc60ed70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<video-container>
  <video
    preload="none"
    poster="{{ .Get `poster` }}"
    width="{{ .Get `width` }}"
    height="{{ .Get `height`}}"
    controls {{ .Get `options` | safeHTMLAttr }}>
    <source src="{{ .Get `source` }}" type="video/mp4">
    Sorry, your browser doesn't support embedded videos.
  </video>
  <footer class="has-text-grey-dark">{{ .Inner | markdownify }}</footer>
</video-container>