mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-28 22:19:59 +02:00
Merge commit '35dec7c96f7ee3eb17dd444f7067f0c776fb56ae'
This commit is contained in:
29
docs/content/en/methods/site/Param.md
Normal file
29
docs/content/en/methods/site/Param.md
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
title: Param
|
||||
description: Returns the site parameter with the given key.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
related: []
|
||||
returnType: any
|
||||
signatures: [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 >}}
|
||||
|
||||
|
||||
```go-html-template
|
||||
{{ .Site.Param "display_toc" }} → true
|
||||
```
|
||||
|
||||
The above is equivalent to either of these:
|
||||
|
||||
```go-html-template
|
||||
{{ .Site.Params.display_toc }}
|
||||
{{ index .Site.Params "display_toc" }}
|
||||
```
|
Reference in New Issue
Block a user