Files
2026-04-28 08:41:31 +00:00

15 lines
434 B
HTML

{{ $src := .Get "src" }}
{{ $type := .Get "type" | default "video/mp4" }}
{{ $width := .Get "width" | default "100%" }}
{{ $height := .Get "height" | default "auto" }}
{{ $controls := .Get "controls" | default "true" }}
<video
width="{{ $width }}"
height="{{ $height }}"
{{ if eq $controls "true" }}controls{{ end }}>
<source src="{{ $src }}" type="{{ $type }}">
Your browser does not support the video tag.
</video>