From 4de8815e9d858aea9bdd7d46e0c5a8e94da1cbd4 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Tue, 9 Sep 2025 10:49:41 -0700 Subject: [PATCH] content: Update description of the cascade front matter field Closes #3201 --- content/en/configuration/cascade.md | 1 - content/en/content-management/front-matter.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/content/en/configuration/cascade.md b/content/en/configuration/cascade.md index a9571adec..9a1fda4c6 100644 --- a/content/en/configuration/cascade.md +++ b/content/en/configuration/cascade.md @@ -14,7 +14,6 @@ You can configure your site to cascade front matter values to the home page and For example, to cascade a "color" parameter to the home page and all its descendants: {{< code-toggle file=hugo >}} -title = 'Home' [cascade.params] color = 'red' {{< /code-toggle >}} diff --git a/content/en/content-management/front-matter.md b/content/en/content-management/front-matter.md index 13b271be4..f0484ef74 100644 --- a/content/en/content-management/front-matter.md +++ b/content/en/content-management/front-matter.md @@ -47,7 +47,7 @@ build : (`map`) A map of [build options]. cascade -: (`map`) A map of front matter keys whose values are passed down to the page's descendants unless overwritten by self or a closer ancestor's cascade. See the [cascade] section for details. +: (`map`) A map (or a slice of maps) of front matter keys whose values are passed down to the page's descendants unless overwritten by self or a closer ancestor's cascade. See the [cascade] section for details. date : (`string`) The date associated with the page, typically the creation date. Note that the TOML format also supports unquoted date/time values. See the [dates](#dates) section for examples. Access this value from a template using the [`Date`] method on a `Page` object.