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

15 lines
645 B
HTML
Raw Normal View History

{{ $_hugo_config := `{ "version": 1 }` }}
<div class="expand">
2021-07-16 21:07:15 +00:00
<a class="expand-label" 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 class="fas fa-chevron-right"></i>
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}}
2021-07-16 21:07:15 +00:00
</a>
<div class="expand-content" style="display: none;">
{{.Inner | safeHTML}}
</div>
</div>