w2ng/themes/hugo-w2ng/layouts/shortcodes/expand.html
2020-01-10 13:05:01 +08:00

12 lines
464 B
HTML

<div class="book-expand my-4 overflow-hidden border border-black">
<label>
<div class="book-expand-head flex justify-between py-1 px-2 border-black border-b border-dotted">
<span>{{ default "Expand" (.Get 0) }}</span>
<span>{{ default "↕" (.Get 1) }}</span>
</div>
<input type="checkbox" class="hidden" />
<div class="book-expand-content py-1 px-2">
{{ .Inner | markdownify }}
</div>
</label>
</div>