youtube.html 498 B

12345678910111213
  1. {{- $pc := .Page.Site.Config.Privacy.YouTube -}}
  2. {{- if not $pc.Disable -}}
  3. {{- $ytHost := cond $pc.PrivacyEnhanced "www.youtube-nocookie.com" "www.youtube.com" -}}
  4. {{- $id := .Get "id" | default (.Get 0) -}}
  5. <div class="video-wrapper">
  6. <iframe loading="lazy"
  7. src="https://{{ $ytHost }}/embed/{{ $id }}{{ with .Get "autoplay" }}{{ if eq . "true" }}?autoplay=1{{ end }}{{ end }}"
  8. allowfullscreen
  9. title="YouTube Video"
  10. >
  11. </iframe>
  12. </div>
  13. {{ end -}}