ritual.sh/layouts/shortcodes/video.html
2026-02-15 07:37:37 +00:00

8 lines
233 B
HTML

{{ $src := .Get "src" }}
{{ with .Page.Resources.GetMatch $src }}
<div style="text-align: center;">
<video autoplay loop muted playsinline>
<source src="{{ .RelPermalink }}" type="{{ .MediaType }}">
</video>
</div>
{{ end }}