hugo-book-theme/layouts/shortcodes/tabs.html

16 lines
507 B
HTML
Raw Normal View History

2019-05-22 14:37:31 +02:00
{{ if .Inner }}{{ end }}
{{ $id := .Get 0 }}
{{ $group := printf "tabs-%s" $id }}
2019-05-23 17:48:30 +02:00
<div class="book-tabs">
{{- range $index, $tab := .Scratch.Get $group -}}
<input type="radio" class="toggle" name="{{ $group }}" id="{{ printf "%s-%d" $group $index }}" {{ if not $index }}checked="checked"{{ end }} />
2019-05-23 17:48:30 +02:00
<label for="{{ printf "%s-%d" $group $index }}">
{{- $tab.Name -}}
2019-05-23 17:48:30 +02:00
</label>
<div class="book-tabs-content markdown-inner">
{{- .Content | $.Page.RenderString -}}
2019-05-23 17:48:30 +02:00
</div>
{{- end -}}
2019-05-23 17:48:30 +02:00
</div>