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

14 lines
657 B
HTML

{{ $_hugo_config := `{ "version": 1 }` }}
<div class="expand">
<div class="expand-label" onclick="$h = $(this);$h.next('div').slideToggle(100,function () {$h.children('.expand-icon').attr('class',function () {return $h.next('div').is(':visible') ? 'expand-icon expand-icon__down' : 'expand-icon expand-icon__right';});});">
<span class="expand-icon expand-icon__right">
{{ partial "svgs/arrow/keyboard-arrow-right.svg" (dict "width" 20 "height" 20) }}
</span>
<span>
{{.Get 0}}
</span>
</div>
<div class="expand-content">
{{.Inner | safeHTML}}
</div>
</div>