diff --git a/docs/content/templates/variables.md b/docs/content/templates/variables.md index 93f5ad02b..e6b6b5a3f 100644 --- a/docs/content/templates/variables.md +++ b/docs/content/templates/variables.md @@ -83,4 +83,10 @@ Also available is `.Site` which has the following: **.Site.Taxonomies** The indexes for the entire site.
**.Site.LastChange** The date of the last change of the most recent content.
**.Site.Recent** Array of all content ordered by Date, newest first.
-**.Site.Params** A container holding the values from `params` in your site configuration file.
+**.Site.Params** A container holding the values from the `params` section of your site configuration file. For example, a TOML config file might look like this: + + baseurl = "http://yoursite.example.com/" + + [params] + description = "Tesla's Awesome Hugo Site" + author = "Nikola Tesla"