MitseaBlog/themes/hugo-theme-stack/layouts/shortcodes/video.html

15 lines
406 B
HTML
Raw Normal View History

2022-10-11 17:34:41 +08:00
{{- $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>