self_Hosting_website/my_space/layouts/shortcodes/.backup/video.html
2024-06-03 03:05:13 +05:30

9 lines
225 B
HTML

{{ $mp4 := .Get 0 }}
{{ $width := .Get 1 | default "100%" }}
{{ $height := .Get 2 | default "auto" }}
<video controls width="{{ $width }}px" height="{{ $height }}px">
<source src="{{ $mp4 }}" type="video/mp4" />
</video>