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

expand.html « shortcodes « layouts - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b66a54d966fa069e1abb33f36c02d9ba041b15e (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="expand">
  <button type="button" class="expand__button" aria-label="Expand Button">
    <span class="expand-icon expand-icon__right">
        {{ partial "svgs/arrow-right.svg" (dict "width" 24 "height" 24) }}
    </span>
    {{.Get 0}}
  </button>
  <div class="expand__content">
    {{.Inner | markdownify}}
  </div>
</div>