2018-05-22 08:00:36 -04:00
|
|
|
{{- $pc := .Page.Site.Config.Privacy.YouTube -}}
|
2018-05-20 14:00:29 -04:00
|
|
|
{{- if not $pc.Disable -}}
|
2018-05-21 11:34:21 -04:00
|
|
|
{{- $ytHost := cond $pc.PrivacyEnhanced "www.youtube-nocookie.com" "www.youtube.com" -}}
|
|
|
|
{{- $id := .Get "id" | default (.Get 0) -}}
|
2020-12-02 06:53:53 -05:00
|
|
|
{{- $class := .Get "class" | default (.Get 1) -}}
|
|
|
|
{{- $title := .Get "title" | default "YouTube Video" }}
|
2018-05-30 06:10:23 -04:00
|
|
|
<div {{ with $class }}class="{{ . }}"{{ else }}style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"{{ end }}>
|
2020-12-02 06:53:53 -05:00
|
|
|
<iframe src="https://{{ $ytHost }}/embed/{{ $id }}{{ with .Get "autoplay" }}{{ if eq . "true" }}?autoplay=1{{ end }}{{ end }}" {{ if not $class }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" {{ end }}allowfullscreen title="{{ $title }}"></iframe>
|
2018-05-21 11:34:21 -04:00
|
|
|
</div>
|
2018-05-25 05:16:23 -04:00
|
|
|
{{ end -}}
|