distribution/docs/themes/hugo-geekdoc/layouts/shortcodes/tab.html
David Karlsson e2ae76f1f2 docs: add hugo site
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2023-10-11 16:45:16 +02:00

12 lines
375 B
HTML

{{- 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 }}