2023-05-23 21:57:48 +00:00
|
|
|
{{- $unused := .Inner }}
|
2023-05-25 13:45:57 +00:00
|
|
|
{{- $version := split hugo.Version "." }}
|
|
|
|
{{- $major := int (index $version 0) }}
|
|
|
|
{{- $minor := int (index $version 1) }}
|
2023-06-05 21:18:12 +00:00
|
|
|
{{- $color := (.Get "color") }}
|
2023-07-27 14:54:06 +00:00
|
|
|
{{- $groupid := ((.Get "groupid") | default (.Get "groupId")) }}
|
|
|
|
{{- if (.Get "groupId") }}
|
|
|
|
{{- warnf "%q: DEPRECATED parameter 'groupId' for shortcode 'tabs' found, use 'groupid' instead" .Page.File.Path }}
|
|
|
|
{{- end }}
|
2023-06-05 21:18:12 +00:00
|
|
|
{{- $icon := (.Get "icon") }}
|
|
|
|
{{- $style := (.Get "style") }}
|
|
|
|
{{- $title := (.Get "title") }}
|
|
|
|
{{- $tabs := (.Scratch.Get "tabs") }}
|
2022-06-22 18:32:18 +00:00
|
|
|
{{- partial "shortcodes/tabs.html" (dict
|
2023-07-27 14:14:55 +00:00
|
|
|
"page" .Page
|
2023-06-05 21:18:12 +00:00
|
|
|
"color" $color
|
|
|
|
"content" $tabs
|
2023-05-25 13:45:57 +00:00
|
|
|
"groupid" $groupid
|
2023-06-05 21:18:12 +00:00
|
|
|
"icon" $icon
|
|
|
|
"style" $style
|
|
|
|
"title" $title
|
2022-06-22 18:32:18 +00:00
|
|
|
) }}
|