hugo-theme-anubis2/layouts/shortcodes/video.html

20 lines
521 B
HTML
Raw Normal View History

2024-04-09 14:03:09 +02:00
<video
class="video-shortcode"
preload="{{ .Get "preload" | default "auto" }}"
2023-08-03 18:36:21 +02:00
controls
>
2024-04-09 14:03:09 +02:00
<source
src="{{ .Get "src" }}"
2023-08-03 18:36:21 +02:00
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 }}