Files
hugo/layouts/shortcodes/note.html
T
Bjørn Erik Pedersen e68431034e theme: Format layouts
```
npx prettier --write layouts
```
2025-02-18 18:04:34 +01:00

21 lines
411 B
HTML

{{/* prettier-ignore-start */ -}}
{{- /*
Renders a callout.
@returns {template.HTML}
@examples
{{< 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
)
}}