12 lines
332 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 }}
2025-03-09 11:26:56 +01:00
src="{{ (.Page.Resources.GetMatch (.Get "src")).Permalink }}"
2023-10-25 14:38:54 +02:00
>
</video>