This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
landingpage/layouts/shortcodes/expand.html

10 lines
523 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';});});">
<i style="font-size:x-small;" class="fas fa-chevron-right"></i>
<strong>{{.Get 0 }}</strong>
</div>
<div class="expand-content" style="display: none;">
{{.Inner | markdownify}}
<br>
</div>
</div>