mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
703 B
703 B
title | description | categories | keywords | action | aliases | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
site | Provides global access to the current Site object. |
|
|
Use the site
function to return the Site
object regardless of current context.
{{ site.Params.foo }}
When the Site
object is in context you can use the Site
property:
<!-- current context -->
{{ .Site.Params.foo }}
<!-- template context -->
{{ $.Site.Params.foo }}
{{% note %}}
To simplify your templates, use the global site
function regardless of whether the Site
object is in context.
{{% /note %}}