15 lines
434 B
HTML
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>
|