aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/layouts/shortcodes/details.html
blob: 61a71837d32dd61ec9bd52dbd9e19664fe40ec41 (plain) (blame)
1
2
3
4
<details{{ with .Get 1 }} {{ . | safeHTML }}{{ end -}}>
  <summary>{{ with .Get 0 -}}{{ . | safeHTML }}{{ else -}}{{ errorf "No summary provided"}}{{ end -}}</summary>
  {{ with .Inner -}}{{ . | markdownify}}{{ else -}}{{ errorf "No details provided"}}{{ end -}}
</details>