#39, Add expand and tabs shortcodes

This commit is contained in:
Alex Shpak
2019-05-22 14:37:31 +02:00
parent 8f5aaee7aa
commit 0e6864f5aa
11 changed files with 159 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
{{ if .Inner }}{{ end }}
{{ $id := .Get 0 }}
{{ $group := printf "tabs-%s" $id }}
<div class="book-tabs">
<div class="book-tabs-head">
{{ range $index, $tab := .Scratch.Get $group}}
<label for="{{ printf "%s-%d" $group $index }}">
<span>{{ $tab.Name }}</span>
</label>
{{ end }}
</div>
{{ range $index, $tab := .Scratch.Get $group}}
<input type="radio" name="{{ $group }}" style="display: none;" id="{{ printf "%s-%d" $group $index }}" {{ if not $index }}checked="checked"{{ end }} />
<div class="book-tabs-content markdown-inner">
<span>{{ .Content | markdownify }}</span>
</div>
{{ end }}
</div>