11 lines
276 B
HTML
11 lines
276 B
HTML
|
{{- $video := .resource -}}
|
||
|
|
||
|
<figure class="figure figure--video">
|
||
|
<video controls>
|
||
|
<source src="{{ $video.RelPermalink }}" type="{{ $video.MediaType.Type }}">
|
||
|
</video>
|
||
|
{{ if .shouldShowTitle }}
|
||
|
{{ partial "page/figures/caption.html" . }}
|
||
|
{{ end }}
|
||
|
</figure>
|