mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
ba45da9d03
32356e4e Fix typo in header of shortcode-templates.md c8f1a2d2 Correct code example for index template function bfa6a55d Escape code fencing ff8b2f99 Fix typos in deployment with wercker tutorial 557c36e8 theme: Merge commit '7fbb4bed25001182bfeb91f79db0f0c1936582ee' 7fbb4bed Squashed 'themes/gohugoioTheme/' changes from 7dd8a302..ca53082d ce31cee0 Add "See Also" config 158cee1b Make the tags into keywords 61600be6 Add a note to the related section 49edb5a2 Relase 0.27.1 c9bbc001 releaser: Add release notes to /docs for release of 0.27.1 213c6c3b Add bugs poster 8b4590cd Add KeyCDN integration tutorial 2b277859 Add tutorial videos to several docs pages 950fef1f Update roadmap to link to the correct milestones page 496f5bf6 Rename relnotes d6f9378d Bump Netlify versions to 0.27 087fde7f Update 0.27 release notes 603f94ae docs: Document Related Content 3790f6a3 releaser: Bump versions for release of 0.27 0948868c releaser: Add release notes to /docs for release of 0.27 git-subtree-dir: docs git-subtree-split: 32356e4eabe357ae914f4d1d59e8ae31ce936723
4.3 KiB
4.3 KiB
title | linktitle | description | date | publishdate | lastmod | categories | keywords | draft | menu | weight | sections_weight | aliases | toc | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Site Variables | Site Variables | Many, but not all, site-wide variables are defined in your site's configuration. However, Hugo provides a number of built-in variables for convenient access to global values in your templates. | 2017-02-01 | 2017-02-01 | 2017-02-01 |
|
|
false |
|
10 | 10 |
|
true |
The following is a list of site-level (aka "global") variables. Many of these variables are defined in your site's configuration file, whereas others are built into Hugo's core for convenient usage in your templates.
Site Variables List
.Site.AllPages
- array of all pages, regardless of their translation.
.Site.Author
- a map of the authors as defined in the site configuration.
.Site.BaseURL
- the base URL for the site as defined in the site configuration.
.Site.BuildDrafts
- a boolean (default:
false
) to indicate whether to build drafts as defined in the site configuration. .Site.Copyright
- a string representing the copyright of your website as defined in the site configuration.
.Site.Data
- custom data, see Data Templates.
.Site.DisqusShortname
- a string representing the shortname of the Disqus shortcode as defined in the site configuration.
.Site.Files
- all source files for the Hugo website.
.Site.GoogleAnalytics
- a string representing your tracking code for Google Analytics as defined in the site configuration.
.Site.IsMultiLingual
- whether there are more than one language in this site. See Multilingual for more information.
.Site.Language.Lang
- the language code of the current locale (e.g.,
en
). .Site.Language.LanguageName
- the full language name (e.g.
English
). .Site.Language.Weight
- the weight that defines the order in the
.Site.Languages
list. .Site.Language
- indicates the language currently being used to render the website. This object's attributes are set in site configurations' language definition.
.Site.LanguageCode
- a string representing the language as defined in the site configuration. This is mostly used to populate the RSS feeds with the right language code.
.Site.LanguagePrefix
- this can be used to prefix URLs to point to the correct language. It will even work when only one defined language. See also the functions absLangURL and relLangURL.
.Site.Languages
- an ordered list (ordered by defined weight) of languages.
.Site.LastChange
- a string representing the date/time of the most recent change to your site. This string is based on the
date
variable in the front matter of your content pages. .Site.Menus
- all of the menus in the site.
.Site.Pages
- array of all content ordered by Date with the newest first. This array contains only the pages in the current language.
.Site.Permalinks
- a string to override the default permalink format as defined in the site configuration.
.Site.RegularPages
- a shortcut to the regular page collection.
.Site.RegularPages
is equivalent towhere .Site.Pages "Kind" "page"
. .Site.RSSLink
- the URL for the site RSS.
.Site.Sections
- top-level directories of the site.
.Site.Taxonomies
- the taxonomies for the entire site. Replaces the now-obsolete
.Site.Indexes
since v0.11. Also see section Taxonomies elsewhere. .Site.Title
- a string representing the title of the site.
The .Site.Params
Variable
.Site.Params
is a container holding the values from the params
section of your site configuration.
Example: .Site.Params
The following config.toml
defines a site-wide param for description
:
baseURL = "https://yoursite.example.com/"
[params]
description = "Tesla's Awesome Hugo Site"
author = "Nikola Tesla"
You can use .Site.Params
in a partial template to call the default site description:
{{< code file="layouts/partials/head.html" >}}
{{< /code >}}