mirror of https://github.com/escalate/hugo-split-theme.git

Felix Boerner
22.44.2025 757805139682c94358675c9a6c6a60d444f21c4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="image split-video">
 
  <!-- YouTube Video -->
  {{ 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.visual.video.youtubeId }}?rel=0&amp;controls=0&amp;showinfo=0&amp;loop=1&amp;playlist={{ .Site.Params.visual.video.youtubeId }}&amp;autoplay=1{{ if .Site.Params.visual.video.mute }}&amp;mute=1{{ end }}" frameborder="0" allowfullscreen></iframe>
      </div>
    </div>
 
  <!-- Self-Hosted Video -->
  {{ else if .Site.Params.visual.video.file }}
 
    <video class="video" src="{{ .Site.Params.visual.video.file }}" loop autoplay{{ if .Site.Params.visual.video.mute }} muted{{ end }}></video>
 
  {{ end }}
 
</div>