Files
hugo-theme-stack/layouts/shortcodes/video.html
T

15 lines
406 B
HTML
Raw Normal View History

{{- $src := .Get "src" | default (.Get 0) -}}
2021-07-27 17:42:06 +09:00
<div class="video-wrapper">
<video
controls
src="{{- $src -}}"
2021-07-27 17:42:06 +09:00
{{ 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.
2021-07-27 17:42:06 +09:00
</p>
</video>
</div>