
Upgrade the Geekdocs theme from 0.32.4 to 0.44.1. This changes the layout a little bit; most notably the 'documentation' menu is in a larger font. I tried the upgrade to solve an issue of images not appearing (while writing not-yet-committed changes). That wasn't solved by the upgrade, but in the spirit of keeping up to date I'd thought I'd commit this upgrade anyway.
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 }}
|