Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expand.html « shortcodes « layouts - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd3007a2c4d3c4c1897e2d1ecbbb6bf438d75509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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=";" class="fas fa-chevron-right"></i>
        <span>
        {{- $expandMessage := T "Expand-title" -}}
        {{- if .IsNamedParams -}}
        {{- .Get "default" | default $expandMessage -}}
        {{- else -}}
        {{- .Get 0 | default $expandMessage -}}
        {{- end -}}
        </span>
    </div>
    <div class="expand-content" style="display: none;">
{{- .Inner | safeHTML | markdownify -}}
    </div>
</div>