squirrel/layouts/partials/video.html
2022-06-27 16:09:44 +02:00

19 lines
No EOL
535 B
HTML

{{- $video := .video }}
{{- $odd := .odd }}
{{- $id := "video"}}
{{if $video.id}}
{{- $id := $video.id}}
{{else if .id}}
{{- $id := .id }}
{{end}}
<div id="{{ $id }}" class="section {{if eq $odd 0}} section-even {{end}}">
<div class="section-content">
<div class="videoWrapper">
{{ if eq $video.video.type "mp4"}}
<video class="video" controls>
<source src="{{ $video.video.url }}" type="video/mp4">
</video>
{{ end }}
</div>
</div>
</div>