hugo-book/layouts/shortcodes/expand.html

13 lines
371 B
HTML
Raw Normal View History

2019-05-22 12:37:31 +00:00
<div class="book-expand">
<label>
<div class="book-expand-head flex justify-between">
<span>{{ default "Expand" (.Get 0) }}</span>
<span>{{ default "↕" (.Get 1) }}</span>
</div>
<input type="checkbox" style="display: none" />
<div class="book-expand-content markdown-inner">
{{- .Inner | markdownify -}}
</div>
</label>
</div>