2019-05-06 17:05:39 +00:00
|
|
|
{{ $_hugo_config := `{ "version": 1 }` }}
|
2017-07-30 16:02:07 +00:00
|
|
|
<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';});});">
|
2021-07-16 21:51:11 +00:00
|
|
|
<i class="fas fa-chevron-{{ if eq (.Get 1) "true" }}down{{else}}right{{end}}"></i>
|
2017-08-20 20:29:22 +00:00
|
|
|
{{$expandMessage := T "Expand-title"}}
|
|
|
|
{{.Get 0 | default $expandMessage}}
|
2021-07-16 21:07:15 +00:00
|
|
|
</a>
|
2021-07-16 21:51:11 +00:00
|
|
|
<div class="expand-content" style="display: {{ if eq (.Get 1) "true" }}block{{else}}none{{end}};">
|
2017-07-30 16:02:07 +00:00
|
|
|
{{.Inner | safeHTML}}
|
|
|
|
</div>
|
|
|
|
</div>
|