mirror of
https://github.com/imfing/hextra.git
synced 2025-06-18 21:03:35 -04:00

* Adapted theme's layout to [Hugo v0.146.0](https://gohugo.io/templates/new-templatesystem-overview/) * Bumped minimal Hugo version to v0.146.0
12 lines
790 B
HTML
12 lines
790 B
HTML
{{- $title := .Get "title" | default "" -}}
|
|
{{- $closed := eq (.Get "closed") "true" | default false -}}
|
|
|
|
<details class="hx:last-of-type:mb-0 hx:rounded-lg hx:bg-neutral-50 hx:dark:bg-neutral-800 hx:p-2 hx:mt-4 hx:group" {{ if not $closed }}open{{ end }}>
|
|
<summary class="hx:flex hx:items-center hx:cursor-pointer hx:select-none hx:list-none hx:p-1 hx:rounded-sm hx:transition-colors hx:hover:bg-gray-100 hx:dark:hover:bg-neutral-800 hx:before:mr-1 hx:before:inline-block hx:before:transition-transform hx:before:content-[''] hx:dark:before:invert hx:rtl:before:rotate-180 hx:group-open:before:rotate-90">
|
|
<strong class="hx:text-lg">{{ $title | markdownify }}</strong>
|
|
</summary>
|
|
<div class="hx:p-2 hx:overflow-hidden">
|
|
{{ .InnerDeindent | markdownify }}
|
|
</div>
|
|
</details>
|