blob: 532357785c5a52d5de203eebdc31b318ff8ae068 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
---
title: Site variables
description: Use these methods with Site objects. A multilingual project will have two or more sites, one for each language.
categories: [variables]
keywords: []
menu:
docs:
parent: variables
weight: 80
weight: 80
toc: true
aliases: [/variables/site-variables/]
---
{{% include "variables/_common/consistent-terminology.md" %}}
## All methods
Use any of these methods in your templates.
{{< list-pages-in-section path=/methods/site titlePrefix=.Site. >}}
## Multilingual
Use these methods with your multilingual projects.
{{< list-pages-in-section path=/methods/site filter=methods_site_multilingual filterType=include titlePrefix=.Site. omitElementIDs=true >}}
[`site`]: /functions/global/site
[context]: /getting-started/glossary/#context
[configuration file]: /getting-started/configuration
## Page collections
Range through these collections when rendering lists on any page.
{{< list-pages-in-section path=/methods/site filter=methods_site_page_collections filterType=include titlePrefix=.Site. omitElementIDs=true >}}
## Global site function
Within a partial template, if you did not pass a `Page` or `Site` object in [context], you cannot use this syntax:
```go-html-template
{{ .Site.SomeMethod }}
```
Instead, use the global [`site`] function:
```go-html-template
{{ site.SomeMethod }}
```
{{% note %}}
You can use the global site function in all templates to avoid context problems. Its usage is not limited to partial templates.
{{% /note %}}
|