19 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{- $pc := .Page.Site.Config.Privacy.YouTube -}}
 | 
						|
{{- if not $pc.Disable -}}
 | 
						|
{{- $ytHost := cond $pc.PrivacyEnhanced  "www.youtube-nocookie.com" "www.youtube.com" -}}
 | 
						|
{{- $id := .Get "id" | default (.Get 0) -}}
 | 
						|
{{- $class := .Get "class" | default (.Get 1) -}}
 | 
						|
{{- $params := slice -}}
 | 
						|
{{- if eq (.Get "autoplay") "true" -}}
 | 
						|
    {{- $params = $params | append (querify "autoplay" 1) -}}
 | 
						|
{{- end -}}
 | 
						|
{{- with (.Get "start") -}}
 | 
						|
    {{- $params = $params | append (querify "start" (. | int)) -}}
 | 
						|
{{- end -}}
 | 
						|
{{- with (.Get "end") -}}
 | 
						|
    {{- $params = $params | append (querify "end" (. | int)) -}}
 | 
						|
{{- end }}
 | 
						|
<div {{ with $class }}class="{{ . }}"{{ else }}style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"{{ end }}>
 | 
						|
  <iframe src="https://{{ $ytHost }}/embed/{{ $id }}{{ with $params }}?{{ delimit $params "&" | safeURL }}{{ end }}" {{ if not $class }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" {{ end }}allowfullscreen title="YouTube Video"></iframe>
 | 
						|
</div>
 | 
						|
{{ end -}}
 |