aboutsummaryrefslogblamecommitdiff
path: root/themes/hugo-theme-stack/layouts/shortcodes/video.html
blob: 53247548744ed78304c7201ce9e922b999014b91 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                 
{{- $src := .Get "src" | default (.Get 0) -}}
<div class="video-wrapper">
    <video
    controls
    src="{{- $src -}}"
    {{ with .Get "poster" }}poster="{{- . -}}"{{ end }}
    {{ with .Get "autoplay" }}autoplay{{ end }}
    >
        <p>
            Your browser doesn't support HTML5 video. Here is a
            <a href="{{- $src -}}">link to the video</a> instead.
        </p>
    </video>
</div>