[ci skip] Actual video shortcode
This commit is contained in:
parent
ae7cc5c03f
commit
0e339c79c7
1 changed files with 19 additions and 0 deletions
19
layouts/shortcodes/youtube.html
Normal file
19
layouts/shortcodes/youtube.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
{{- $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 -}}
|
Loading…
Add table
Reference in a new issue