hugo-book/layouts/shortcodes/tabs.html

16 lines
499 B
HTML
Raw Normal View History

2019-05-22 12:37:31 +00:00
{{ if .Inner }}{{ end }}
{{ $id := .Get 0 }}
{{ $group := printf "tabs-%s" $id }}
2019-05-23 15:48:30 +00: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 15:48:30 +00:00
<label for="{{ printf "%s-%d" $group $index }}">
{{- $tab.Name -}}
2019-05-23 15:48:30 +00:00
</label>
<div class="book-tabs-content markdown-inner">
{{- .Content | markdownify -}}
2019-05-23 15:48:30 +00:00
</div>
{{- end -}}
2019-05-23 15:48:30 +00:00
</div>