aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/disclose.html
blob: c5e7c2c0539ff64d25fc121446aad46528747ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- $text := default "Content Warning: " (.Get "text" | default (.Get 0)) -}}

{{- if gt (len .Inner) 1 -}}
  {{- $text = .Inner -}}
{{- end -}}

<details data-disclosure="">
  <summary>
    {{ (or $.Page.Params.title $text) | markdownify }}
  </summary>
</details>
{{- /* This comment removes trailing newlines and white spaces. */ -}}