Files
hugo/layouts/shortcodes/note.html
T
2025-03-05 04:50:06 -08:00

17 lines
382 B
HTML

{{/* prettier-ignore-start */ -}}
{{- /*
Renders a callout.
@example {{< note >}}
Some descriptive text here.
{{< /note >}}
*/ -}}
{{/* prettier-ignore-end */ -}}
{{- $text := .Inner | strings.TrimSpace | .Page.RenderString (dict "display" "block") }}
{{- partial "layouts/blocks/alert.html" (dict
"color" "blue"
"icon" "exclamation"
"text" $text
)
}}