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

15 lines
421 B
HTML
Raw Normal View History

{{- $summary := (.Get "summary") | default (T "Details") }}
{{- $open := false }}
{{- if in (slice "false" false 0) (.Get "open") }}
{{- $open = false }}
{{- else if in (slice "true" true 1) (.Get "open")}}
{{- $open = true }}
{{- end }}
{{- partial "shortcodes/notice.html" (dict
"page" .Page
"content" .Inner
"expanded" $open
"params" .Params
"style" "transparent"
"title" $summary
) }}