aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/tab.html
blob: e2a207ca9be865ce9345d6ab16b0f6f04586bb9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ 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}}