hugo/content/en/methods/site/Param.md
Bjørn Erik Pedersen 9b0050e9aa Squashed 'docs/' content from commit 5c085a37b
git-subtree-dir: docs
git-subtree-split: 5c085a37b297bf12f59efeaae591418ec025c10d
2024-01-27 10:48:33 +01:00

605 B

title description categories keywords action
Param Returns the site parameter with the given key.
related returnType signatures
any
SITE.Param KEY

The Param method on a Site object is a convenience method to return the value of a user-defined parameter in the site configuration.

{{< code-toggle file=hugo >}} [params] display_toc = true {{< /code-toggle >}}

{{ .Site.Param "display_toc" }} → true

The above is equivalent to either of these:

{{ .Site.Params.display_toc }}
{{ index .Site.Params "display_toc" }}