2022-06-22 18:32:18 +00:00
{{- $context := .context }}
2023-05-23 21:53:52 +00:00
{{- $groupid := .groupid | default (partial "make-random-md5.hugo" $context) }}
2023-06-05 21:18:12 +00:00
{{- $color := .color }}
{{- $style := .style }}
{{- $title := .title }}
{{- $icon := .icon }}
{{- $tabs := slice }}
{{- range $tab := (.content | default slice) }}
{{- if and (not $tab.title) $tab.name }}
{{- warnf "%s: parameter 'name' is deprecated for shortcode 'tab', use 'title' instead" $context.File.Path }}
{{- $tab = merge $tab (dict "title" .name) }}
{{- end }}
{{- with $tab }}
2023-06-07 19:04:47 +00:00
{{- $color := .color | default $color | default "" }}
{{- $style := .style | default $style | default (cond (ne $color "") "filled" "initial") }}
2023-06-05 21:18:12 +00:00
{{- $title := .title | default ($style | T) }}
{{- $title = trim $title " " }}
{{- $icon := .icon | default "" }}
{{- if and (not $icon) (eq (len $icon) 0) }}
{{- if eq $style "info" }}{{ $icon = default "info-circle" }}{{ end }}
{{- if eq $style "warning" }}{{ $icon = default "exclamation-triangle" }}{{ end }}
{{- if eq $style "note" }}{{ $icon = default "exclamation-circle" }}{{ end }}
{{- if eq $style "tip" }}{{ $icon = default "lightbulb" }}{{ end }}
{{- end }}
{{- $icon = trim $icon " " }}
{{- if and $icon (not (findRE ".*?\\bfa-\\w.*?" $icon)) }}
{{- $icon = printf "fa-fw fas fa-%s" $icon }}
{{- end }}
{{- $tabs = $tabs | append (dict
"color" $color
"content" .content
"icon" $icon
"itemid" (printf "%s%s" ($title | $context.RenderString | plainify) ($icon | plainify))
"style" $style
"title" $title
) }}
{{- end }}
{{- end }}
{{- $color = .color | default "" }}
2023-06-07 19:04:47 +00:00
{{- $style = .style | default (cond (ne $color "") "filled" "initial") }}
2023-06-05 21:18:12 +00:00
{{- $title = .title | default ($style | T) }}
{{- $title = trim $title " " }}
{{- $icon = .icon | default "" }}
{{- if and (not $icon) (eq (len $icon) 0) }}
{{- if eq $style "info" }}{{ $icon = default "info-circle" }}{{ end }}
{{- if eq $style "warning" }}{{ $icon = default "exclamation-triangle" }}{{ end }}
{{- if eq $style "note" }}{{ $icon = default "exclamation-circle" }}{{ end }}
{{- if eq $style "tip" }}{{ $icon = default "lightbulb" }}{{ end }}
{{- end }}
{{- $icon = trim $icon " " }}
{{- if and $icon (not (findRE ".*?\\bfa-\\w.*?" $icon)) }}
{{- $icon = printf "fa-fw fas fa-%s" $icon }}
{{- end }}
2022-06-22 18:32:18 +00:00
{{- with $context }}
2023-06-05 16:31:55 +00:00
< div class = "tab-panel" data-tab-group = "{{ $groupid }}" >
2022-06-22 18:32:18 +00:00
< div class = "tab-nav" >
2023-06-06 17:54:12 +00:00
< div class = "tab-nav-title" > {{ if $icon }}< i class = "{{ $icon }}" > < / i > {{ end }}{{ if and $icon $title }} {{ end }}{{ $title | $context.RenderString }}{{ if (not $title) }}​ {{ end }}< / div >
2022-06-22 18:32:18 +00:00
{{- range $idx, $tab := $tabs }}
< button
2023-06-05 21:18:12 +00:00
data-tab-item="{{ .itemid }}"
class="tab-nav-button tab-panel-style cstyle {{ .style }}{{ cond (eq $idx 0) " active" ""}}"{{ if .color }} style="--VARIABLE-BOX-color: {{ .color }};"{{ end }}
onclick="switchTab('{{ $groupid }}','{{ .itemid }}')"
2023-01-29 15:45:42 +00:00
>
2023-06-06 16:15:08 +00:00
< div >
< div class = "tab-nav-hidden" > {{ if .icon }}< i class = "{{ .icon }}" > < / i > {{ end }}{{ if and .icon .title }} {{ end }}{{ .title | $context.RenderString }}{{ if (not .title) }}​ {{ end }}< / div >
< div class = "tab-nav-text" > {{ if .icon }}< i class = "{{ .icon }}" > < / i > {{ end }}{{ if and .icon .title }} {{ end }}{{ .title | $context.RenderString }}{{ if (not .title) }}​ {{ end }}< / div >
< / div >
2023-06-04 22:27:51 +00:00
< / button >
2022-06-22 18:32:18 +00:00
{{- end }}
< / div >
2023-06-05 16:31:55 +00:00
< div class = "tab-content-container" >
{{- range $idx, $tab := $tabs }}
2023-01-29 15:45:42 +00:00
< div
2023-06-05 21:18:12 +00:00
data-tab-item="{{ .itemid }}"
class="tab-content tab-panel-style cstyle {{ .style }}{{ cond (eq $idx 0) " active" ""}}"{{ if .color }} style="--VARIABLE-BOX-color: {{ .color }};"{{ end }}>
2023-06-05 16:31:55 +00:00
< div class = "tab-content-text" >
2023-06-04 22:24:14 +00:00
{{ if ne "< " (substr (strings.TrimLeft " " .content) 0 1) }}< p > {{ end }}<!-- we add a DOM element here if there is none to make collapsing marings work -->
2023-05-23 21:57:48 +00:00
{{ .content | safeHTML }}< / div > <!-- no line break allowed here because of awkward behavior of Hugo 110 or this theme when tag shortcode is called standalone outside of tags shortcode ? -->
2023-06-05 16:31:55 +00:00
< / div >
{{- end }}
2022-06-22 18:32:18 +00:00
< / div >
< / div >
{{- end }}