hugo-book/layouts/shortcodes/details.html

8 lines
289 B
HTML
Raw Normal View History

2020-04-21 20:30:00 +00:00
<details {{ if or (.Get "open") (in .Params "open") }}open{{ end }}>
{{- $summary := cond .IsNamedParams (.Get "title") (.Get 0) -}}
<summary>{{ $summary | .Page.RenderString }}</summary>
2020-04-21 20:30:00 +00:00
<div class="markdown-inner">
{{ .InnerDeindent | .Page.RenderString }}
2020-04-21 20:30:00 +00:00
</div>
</details>