mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			605 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			605 B
		
	
	
	
	
	
	
	
title, description, categories, keywords, action
| title | description | categories | keywords | action | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Param | Returns the site parameter with the given 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" }}