11 lines
312 B
HTML
11 lines
312 B
HTML
|
<video controls
|
||
|
{{ with .Get "poster" }}poster="{{ . }}"{{ end }}
|
||
|
{{ with .Get "width" }}width="{{ . }}"{{ end }}
|
||
|
{{ with .Get "height" }}height="{{ . }}"{{ end }}
|
||
|
>
|
||
|
<source
|
||
|
{{ with .Get "type" }}type="{{ . }}"{{ end }}
|
||
|
src="{{ (.Page.Resources.GetMatch (.Get "src")).RelPermalink }}"
|
||
|
>
|
||
|
</video>
|