hugo-book-theme/layouts/shortcodes/details.html

7 lines
222 B
HTML
Raw Normal View History

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