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/tabs.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 layouts/shortcodes/tabs.html (limited to 'layouts/shortcodes/tabs.html') diff --git a/layouts/shortcodes/tabs.html b/layouts/shortcodes/tabs.html new file mode 100644 index 0000000..65c1f02 --- /dev/null +++ b/layouts/shortcodes/tabs.html @@ -0,0 +1,19 @@ +{{ if .Inner }}{{ end }} +{{ $id := .Get 0 }} +{{ $group := printf "tabs-%s" $id }} + +
+
+ {{ range $index, $tab := .Scratch.Get $group}} + + {{ end }} +
+ {{ range $index, $tab := .Scratch.Get $group}} + +
+ {{ .Content | markdownify }} +
+ {{ end }} +
-- cgit v1.2.3