From 0e6864f5aad8072fbdcecaad48c0151d231b1d25 Mon Sep 17 00:00:00 2001 From: Alex Shpak Date: Wed, 22 May 2019 14:37:31 +0200 Subject: #39, Add expand and tabs shortcodes --- layouts/shortcodes/tab.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 layouts/shortcodes/tab.html (limited to 'layouts/shortcodes/tab.html') diff --git a/layouts/shortcodes/tab.html b/layouts/shortcodes/tab.html new file mode 100644 index 0000000..24520e7 --- /dev/null +++ b/layouts/shortcodes/tab.html @@ -0,0 +1,12 @@ +{{ if .Parent }} + {{ $name := .Get 0 }} + {{ $group := printf "tabs-%s" (.Parent.Get 0) }} + + {{ if not (.Parent.Scratch.Get $group) }} + {{ .Parent.Scratch.Set $group slice }} + {{ end }} + + {{ .Parent.Scratch.Add $group (dict "Name" $name "Content" .Inner) }} +{{ else }} + {{- errorf "%q: tab shortcode must be inside tabs shortcode" .Page.Path -}} +{{ end}} -- cgit v1.2.3