landingpage/layouts/shortcodes/expand.html

12 lines
547 B
HTML

<div class="expand">
<div class="expand-label" style="cursor: pointer;" onclick="$h = $(this);$h.next('div').slideToggle(100,function () {$h.children('i').attr('class',function () {return $h.next('div').is(':visible') ? 'fas fa-chevron-down' : 'fas fa-chevron-right';});});">
<h1><i style="font-size:x-small;" class="fas fa-chevron-right"></i>
<span>
{{.Get 0 }}
</span>
</h1>
</div>
<div class="expand-content" style="display: none;">
{{.Inner | safeHTML}}
</div>
</div>