aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/video.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/layouts/shortcodes/video.html')
-rw-r--r--themes/default/layouts/shortcodes/video.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/themes/default/layouts/shortcodes/video.html b/themes/default/layouts/shortcodes/video.html
index 1aadbbd..64de78f 100644
--- a/themes/default/layouts/shortcodes/video.html
+++ b/themes/default/layouts/shortcodes/video.html
@@ -13,6 +13,7 @@
{{- $start := default "" (.Get "start" | default (.Get 8)) -}}
{{- $end := default "" (.Get "end" | default (.Get 9)) -}}
{{- $orientation := default "landscape" (.Get "orientation" | default (.Get 10)) -}}
+{{- $remote := default "" (.Get "remote" | default (.Get 11)) -}}
{{- partial "video-container.html"
(dict
@@ -21,14 +22,14 @@
"End" $end
"Height" $height
"Options" $options
+ "Orientation" $orientation
"Poster" $poster
"Preload" $preload
"RelURL" (strings.TrimPrefix .Site.BaseURL .Page.Permalink)
- "Source" $source
+ "Remote" $remote
"Source" $source
"Start" $start
"Title" $title
"Width" $width
- "Orientation" $orientation
)
-}}