mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-07-29 14:21:32 +00:00
19 lines
345 B
HTML
19 lines
345 B
HTML
{{- /*
|
|
Renders a callout.
|
|
|
|
@returns {template.HTML}
|
|
|
|
@examples
|
|
|
|
{{< note >}}
|
|
Some descriptive text here.
|
|
{{< /note >}}
|
|
*/}}
|
|
{{- $text := .Inner | strings.TrimSpace | .Page.RenderString (dict "display" "block") }}
|
|
{{- partial "layouts/blocks/alert.html" (dict
|
|
"color" "blue"
|
|
"icon" "exclamation"
|
|
"text" $text
|
|
)
|
|
}}
|