aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/self.html
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-05-03 04:25:49 -0400
committertdro <tdro@noreply.example.com>2022-05-03 04:25:49 -0400
commite92dc018e28ba8d44f1c6cbc9fb0b779dec271e6 (patch)
tree3667043819ab91065019dfe3b4ff83ad625c2b49 /themes/default/layouts/shortcodes/self.html
downloadcanory-e92dc018e28ba8d44f1c6cbc9fb0b779dec271e6.tar.gz
canory-e92dc018e28ba8d44f1c6cbc9fb0b779dec271e6.tar.bz2
canory-e92dc018e28ba8d44f1c6cbc9fb0b779dec271e6.zip
config.yaml: Commission
Diffstat (limited to 'themes/default/layouts/shortcodes/self.html')
-rw-r--r--themes/default/layouts/shortcodes/self.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/default/layouts/shortcodes/self.html b/themes/default/layouts/shortcodes/self.html
new file mode 100644
index 0000000..3b620b7
--- /dev/null
+++ b/themes/default/layouts/shortcodes/self.html
@@ -0,0 +1,13 @@
+{{- $url := default "https://example.org/" (.Get "url" | default (.Get 0)) -}}
+{{- $title := default "Self Embed" (.Get "title" | default (.Get 1)) -}}
+{{- $caption := default (print $title ": [Link](" $url ")") (.Get "caption" | default (.Get 2)) -}}
+{{- $sandbox := default "" (.Get "sandbox" | default (.Get 3)) -}}
+
+<self-embed>
+ <iframe
+ sandbox="{{ $sandbox }}"
+ src="{{ $url }}"
+ title="{{ $title }}"
+ ></iframe>
+ <figcaption>{{ $caption | markdownify }}</figcaption>
+</self-embed>