mirror of https://github.com/authelia/authelia.git
17 lines
475 B
HTML
17 lines
475 B
HTML
<!--
|
|
Source: https://github.com/alex-shpak/hugo-book/blob/master/layouts/shortcodes/tab.html
|
|
-->
|
|
|
|
{{ if .Parent -}}
|
|
{{ $name := .Get 0 }}
|
|
{{ $group := printf "session-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: 'sessionTab' shortcode must be inside 'sessionTabs' shortcode" .Page.Path }}
|
|
{{ end -}}
|