mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
11 lines
388 B
HTML
11 lines
388 B
HTML
{{- $title := .Get "title" | default "" -}}
|
|
{{- $closed := eq (.Get "closed") "true" | default false -}}
|
|
|
|
<details class="last-of-type:mb-0 rounded p-2 mt-4 mb-4 group alert-info" {{ if not $closed }}open{{ end }}>
|
|
<summary class="p-1 rounded">
|
|
<strong>{{ $title | markdownify }}</strong>
|
|
</summary>
|
|
<div class="mt-3">
|
|
{{ .InnerDeindent | markdownify }}
|
|
</div>
|
|
</details> |