blob: 3341bff9844635e56752a80949984377ab871456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
---
title: site
description: Provides global access to the .Site object.
categories: [functions]
keywords: []
menu:
docs:
parent: functions
function:
aliases: []
returnType:
signatures: [site]
relatedFunctions:
- hugo
- page
- site
aliases: [/functions/site]
---
At the top level of a template that receives the `Site` object in context, these are equivalent:
```go-html-template
{{ .Site.Params.foo }}
{{ site.Params.foo }}
```
When the `Site` object is not in context, use the global `site` function:
```go-html-template
{{ site.Params.foo }}
```
{{% note %}}
To simplify your templates, use the global `site` function regardless of whether the `Site` object is in context.
{{% /note %}}
|