Casual_blog/themes/anubis2/layouts/shortcodes/video.html

21 lines
527 B
HTML
Raw Normal View History

2024-03-07 06:27:02 +00:00
<video
class="video-shortcode"
preload="{{ .Get "preload" | default "auto" }}"
controls
>
<source
src="{{ .Get "src" }}"
type="{{ .Get "type" }}"
{{ if or (.Get "alt") (.Get "caption") }}
alt="{{ with .Get "alt" }}{{ . }}{{ else }}{{ .Get "caption" | markdownify | plainify }}{{ end }}"
{{ end }}
>
{{ i18n "videoIsNotSupported" }}
</video>
{{ if .Get "caption" }}
<figcaption>
{{ .Get "caption" | markdownify }}
</figcaption>
{{ end }}