12 lines
335 B
HTML
Raw Normal View History

2023-10-25 14:38:54 +02:00
<video controls
{{ with .Get "poster" }}poster="{{ . }}"{{ end }}
{{ with .Get "width" }}width="{{ . }}"{{ end }}
{{ with .Get "height" }}height="{{ . }}"{{ end }}
2024-01-07 11:53:49 +01:00
class="internal-video"
2023-10-25 14:38:54 +02:00
>
<source
{{ with .Get "type" }}type="{{ . }}"{{ end }}
src="{{ (.Page.Resources.GetMatch (.Get "src")).RelPermalink }}"
>
</video>