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

17 lines
729 B
HTML
Raw Normal View History

{{ $_hugo_config := `{ "version": 1 }` }}
<div class="expand">
2018-02-19 11:10:41 +00:00
<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>
<span>
2017-08-20 20:29:22 +00:00
{{$expandMessage := T "Expand-title"}}
{{ if .IsNamedParams }}
2017-08-20 20:29:22 +00:00
{{.Get "default" | default $expandMessage}}
{{else}}
2017-08-20 20:29:22 +00:00
{{.Get 0 | default $expandMessage}}
{{end}}
</span>
</div>
<div class="expand-content" style="display: none;">
{{.Inner | safeHTML}}
</div>
</div>