aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/disclose.html
blob: 7f0f8053f4e789fe1fc5c7a6f583233f64c2ae60 (plain)
1
2
3
4
5
6
7
8
9
10
{{- $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. */ -}}