
Building this site requires Hugo (not yet included in the README or in the installation of dependencies in the Makefile). Still very much work in progress, this is basically the [Geekdocks theme][1] + one page. [1]: https://geekdocs.de/
13 lines
366 B
HTML
13 lines
366 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 }}
|