hugo-theme-hilfe/layouts/shortcodes/expand.html

12 lines
492 B
HTML
Raw Normal View History

2020-05-31 18:20:39 +02:00
{{ $id := substr (sha1 .Inner) 0 8 }}
2020-01-12 15:33:02 +01:00
<div class="gdoc-expand">
2020-05-31 18:20:39 +02:00
<label class="gdoc-expand__head flex justify-between" for="{{ $id }}-{{ .Ordinal }}">
<span>{{ default "Expand" (.Get 0) }}</span>
<span>{{ default "↕" (.Get 1) }}</span>
</label>
2020-05-31 18:20:39 +02:00
<input id="{{ $id }}-{{ .Ordinal }}" type="checkbox" class="gdoc-expand__control hidden" />
<div class="gdoc-markdown--nested gdoc-expand__content">
{{ .Inner | $.Page.RenderString | htmlUnescape | safeHTML }}
2020-05-31 18:20:39 +02:00
</div>
2020-01-12 15:33:02 +01:00
</div>