mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-21 19:09:29 +00:00
10 lines
341 B
HTML
10 lines
341 B
HTML
{{- $group := printf "tabs-%d" .Parent.Ordinal -}}
|
|
{{- $tab := printf "%s-%d" $group .Ordinal }}
|
|
<input type="radio" class="toggle" name="{{ $group }}" id="{{ $tab }}" {{ if not .Ordinal }}checked="checked"{{ end }} />
|
|
<label for="{{ $tab }}">
|
|
{{- .Get 0 -}}
|
|
</label>
|
|
<div class="book-tabs-content markdown-inner">
|
|
{{- .Inner -}}
|
|
</div>
|