2023-02-16 08:02:52 +00:00
|
|
|
{{- if .Inner }}{{ end }}
|
|
|
|
{{- $id := .Get 0 }}
|
|
|
|
{{- $group := printf "tabs-%s" $id }}
|
2020-01-12 14:33:02 +00:00
|
|
|
|
2022-01-06 12:58:10 +00:00
|
|
|
|
2020-01-12 14:33:02 +00:00
|
|
|
<div class="gdoc-tabs">
|
2023-02-16 08:02:52 +00:00
|
|
|
{{- range $index, $tab := .Scratch.Get $group }}
|
2022-01-06 12:58:10 +00:00
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
class="gdoc-tabs__control hidden"
|
|
|
|
name="{{ $group }}"
|
|
|
|
id="{{ printf "%s-%d" $group $index }}"
|
|
|
|
{{ if not $index }}checked="checked"{{ end }}
|
|
|
|
/>
|
2020-04-14 23:09:53 +00:00
|
|
|
<label for="{{ printf "%s-%d" $group $index }}" class="gdoc-tabs__label">
|
|
|
|
{{ $tab.Name }}
|
|
|
|
</label>
|
|
|
|
<div class="gdoc-markdown--nested gdoc-tabs__content">
|
2021-02-17 08:22:26 +00:00
|
|
|
{{ .Content | $.Page.RenderString }}
|
2020-04-14 23:09:53 +00:00
|
|
|
</div>
|
2023-02-16 08:02:52 +00:00
|
|
|
{{- end }}
|
2020-01-12 14:33:02 +00:00
|
|
|
</div>
|