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 }}
|
2019-09-01 03:38:16 +02:00
|
|
|
<input type="radio" class="hidden" 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 }}
|
|
|
|
</label>
|
|
|
|
<div class="book-tabs-content markdown-inner">
|
|
|
|
{{ .Content | markdownify }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|