Files
hugo_serialReader/layouts/shortcodes/collapse.html
T
2025-05-13 15:51:18 -06:00

9 lines
362 B
HTML

<div class="collapse">{{ if .Get "summary" }}
{{ else }}
{{ warnf "missing value for param 'summary': %s" .Position }}
{{ end }}
<details {{ if (eq (.Get "openByDefault") true) }} open=true {{ end }}>
<summary markdown="span">{{ .Get "summary" | markdownify }}</summary>
<span class="inner">{{ .Inner | markdownify }}</span>
</details>
</div>