docs-v2/layouts/shortcodes/resources/video-content.html

13 lines
682 B
HTML

{{- $pc := .Page.Site.Config.Privacy.YouTube -}}
{{- if not $pc.Disable -}}
{{- $ytHost := cond $pc.PrivacyEnhanced "www.youtube-nocookie.com" "www.youtube.com" -}}
{{- $id := .Page.Params.youtubeID -}}
<div class="video-content">
<div class="video">
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src='https://{{ $ytHost }}/embed/{{ $id }}{{ if not hugo.IsServer }}?&autoplay=1{{ end }}' allow="autoplay;" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
</div>
</div>
<p>{{ .Page.Description | markdownify }}</p>
{{- end -}}
</div>