| | |
| | | <div class="split-image split-video"> |
| | | |
| | | <!-- YouTube Video --> |
| | | {{ if .Site.Params.split.video.youtubeId }} |
| | | {{ if .Site.Params.visual.video.youtubeId }} |
| | | |
| | | <div class="video-wrap"> |
| | | <div class="video-container"> |
| | | <iframe class="video-content" src="https://www.youtube.com/embed/{{ .Site.Params.split.video.youtubeId }}?rel=0&controls=0&showinfo=0&loop=1&playlist={{ .Site.Params.split.video.youtubeId }}&autoplay=1{{ if .Site.Params.split.video.mute }}&mute=1{{ end }}" frameborder="0" allowfullscreen></iframe> |
| | | <iframe class="video-content" src="https://www.youtube.com/embed/{{ .Site.Params.visual.video.youtubeId }}?rel=0&controls=0&showinfo=0&loop=1&playlist={{ .Site.Params.visual.video.youtubeId }}&autoplay=1{{ if .Site.Params.visual.video.mute }}&mute=1{{ end }}" frameborder="0" allowfullscreen></iframe> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- Self-Hosted Video --> |
| | | {{ else if .Site.Params.split.video.file }} |
| | | {{ else if .Site.Params.visual.video.file }} |
| | | |
| | | <video class="video" src="{{ .Site.Params.split.video.file }}" loop autoplay{{ if .Site.Params.split.video.mute }} muted{{ end }}></video> |
| | | <video class="video" src="{{ .Site.Params.visual.video.file }}" loop autoplay{{ if .Site.Params.visual.video.mute }} muted{{ end }}></video> |
| | | |
| | | {{ end }} |
| | | |