mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-10 19:54:08 +02:00
12 lines
388 B
HTML
12 lines
388 B
HTML
{{ $text := `We did a complete overhaul of Hugo's template system in v0.146.0.
|
|
We're working on getting all of the relevant documentation up to date, but until
|
|
then, see [this page](/templates/new-templatesystem-overview/). `
|
|
}}
|
|
{{ partial "layouts/blocks/alert.html"
|
|
(dict
|
|
"color" "orange"
|
|
"icon" "information-circle"
|
|
"text" ($text | $.Page.RenderString )
|
|
"title" "")
|
|
}}
|