mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-04 20:30:44 +00:00
13 lines
375 B
HTML
13 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 }}
|