2022-06-22 18:32:18 +00:00
{{- $context := .context }}
2023-05-23 21:57:48 +00:00
{{- $tabs := .content | default slice }}
2023-05-23 21:53:52 +00:00
{{- $groupid := .groupid | default (partial "make-random-md5.hugo" $context) }}
2022-06-22 18:32:18 +00:00
{{- with $context }}
2023-01-29 15:45:42 +00:00
< div class = "tab-panel" data-tab-group = "{{ $groupid }}" >
2022-06-22 18:32:18 +00:00
< div class = "tab-nav" >
{{- range $idx, $tab := $tabs }}
< button
2023-05-25 11:17:16 +00:00
data-tab-item="{{ .name | markdownify | plainify }}"
2023-02-08 20:59:28 +00:00
class="tab-nav-button{{ cond (eq $idx 0) " active" ""}}"
2023-05-25 11:17:16 +00:00
onclick="switchTab('{{ $groupid }}','{{ .name | markdownify | plainify}}')"
2023-01-29 15:45:42 +00:00
>
2023-05-25 11:17:16 +00:00
< span > {{ .name | markdownify }}< / span > < / button >
2022-06-22 18:32:18 +00:00
{{- end }}
< / div >
< div class = "tab-content" >
{{- range $idx, $tab := $tabs }}
2023-01-29 15:45:42 +00:00
< div
2023-05-25 11:17:16 +00:00
data-tab-item="{{ .name | markdownify | plainify }}"
2023-02-08 20:59:28 +00:00
class="tab-content-text{{ cond (eq $idx 0) " active" ""}}"
2023-01-29 15:45:42 +00:00
>
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 ? -->
2022-06-22 18:32:18 +00:00
{{- end }}
< / div >
< / div >
{{- end }}