<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Site methods on Hugo</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/</link><description>Recent content in Site methods on Hugo</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="https://v0-122-0--gohugoio.netlify.app/methods/site/index.xml" rel="self" type="application/rss+xml"/><item><title>AllPages</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/allpages/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/allpages/</guid><description>This method returns all page kinds in all languages. That includes the home page, section pages, taxonomy pages, term pages, and regular pages.
In most cases you should use the RegularPages method instead.
{{ range .Site.AllPages }} &amp;lt;h2&amp;gt;&amp;lt;a href=&amp;#34;{{ .RelPermalink }}&amp;#34;&amp;gt;{{ .LinkTitle }}&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt; {{ end }}</description></item><item><title>BaseURL</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/baseurl/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/baseurl/</guid><description>Site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; baseURL: https://example.org/docs/ baseURL = &amp;#39;https://example.org/docs/&amp;#39; { &amp;#34;baseURL&amp;#34;: &amp;#34;https://example.org/docs/&amp;#34; } Template:
{{ .Site.BaseURL }} → https://example.org/docs/ There is almost never a good reason to use this method in your templates. Its usage tends to be fragile due to misconfiguration.
Use the absURL, absLangURL, relURL, or relLangURL functions instead.</description></item><item><title>BuildDrafts</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/builddrafts/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/builddrafts/</guid><description>By default, draft pages are not published when building a site. You can change this behavior with a command line flag:
hugo --buildDrafts Or by setting buildDrafts to true in your site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; buildDrafts: true buildDrafts = true { &amp;#34;buildDrafts&amp;#34;: true } Use the BuildDrafts method on a Site object to determine the current configuration:
{{ .Site.BuildDrafts }} → true</description></item><item><title>Config</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/config/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/config/</guid><description>The Config method on a Site object provides access to a subset of the site configuration, specifically the services and privacy keys.
Services These are the default service settings, typically used by Hugo&amp;rsquo;s built-in templates and shortcodes.
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; services: disqus: shortname: &amp;#34;&amp;#34; googleAnalytics: id: &amp;#34;&amp;#34; instagram: accessToken: &amp;#34;&amp;#34; disableInlineCSS: false rss: limit: -1 twitter: disableInlineCSS: false [services] [services.disqus] shortname = &amp;#39;&amp;#39; [services.googleAnalytics] id = &amp;#39;&amp;#39; [services.</description></item><item><title>Copyright</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/copyright/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/copyright/</guid><description>Site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; copyright: © 2023 ABC Widgets, Inc. copyright = &amp;#39;© 2023 ABC Widgets, Inc.&amp;#39; { &amp;#34;copyright&amp;#34;: &amp;#34;© 2023 ABC Widgets, Inc.&amp;#34; } Template:
{{ .Site.Copyright }} → © 2023 ABC Widgets, Inc.</description></item><item><title>Data</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/data/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/data/</guid><description>Use the Data method on a Site object to access data within the data directory, or within any directory mounted to the data directory. Supported data formats include JSON, TOML, YAML, and XML.
Although Hugo can unmarshal CSV files with the transform.Unmarshal function, do not place CSV files in the data directory. You cannot access data within CSV files using this method.
Consider this data directory:
data/ ├── books/ │ ├── fiction.</description></item><item><title>DisqusShortname</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/disqusshortname/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/disqusshortname/</guid><description>Deprecated in v0.120.0.
Use Site.Config.Services.Disqus.Shortname instead.</description></item><item><title>GetPage</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/getpage/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/getpage/</guid><description>The GetPage method is also available on Page objects, allowing you to specify a path relative to the current page. See details.
When using the GetPage method on a Site object, specify a path relative to the content directory.
If Hugo cannot resolve the path to a page, the method returns nil.
Consider this content structure:
content/ ├── works/ │ ├── paintings/ │ │ ├── _index.md │ │ ├── starry-night.md │ │ └── the-mona-lisa.</description></item><item><title>GoogleAnalytics</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/googleanalytics/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/googleanalytics/</guid><description>Deprecated in v0.120.0.
Use Site.Config.Services.GoogleAnalytics.ID instead.</description></item><item><title>Home</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/home/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/home/</guid><description>This method is useful for obtaining a link to the home page.
Site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; baseURL: https://example.org/docs/ baseURL = &amp;#39;https://example.org/docs/&amp;#39; { &amp;#34;baseURL&amp;#34;: &amp;#34;https://example.org/docs/&amp;#34; } Template:
{{ .Site.Home.Permalink }} → https://example.org/docs/ {{ .Site.Home.RelPermalink }} → /docs/</description></item><item><title>IsDevelopment</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/isdevelopment/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/isdevelopment/</guid><description> Deprecated in v0.120.0.
Use hugo.IsDevelopment instead.
{{ .Site.IsDevelopment }} → true/false</description></item><item><title>IsMultiLingual</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/ismultilingual/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/ismultilingual/</guid><description>Site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; defaultContentLanguage: de defaultContentLanguageInSubdir: true languages: de: languageCode: de-DE languageName: Deutsch title: Projekt Dokumentation weight: 1 en: languageCode: en-US languageName: English title: Project Documentation weight: 2 defaultContentLanguage = &amp;#39;de&amp;#39; defaultContentLanguageInSubdir = true [languages] [languages.de] languageCode = &amp;#39;de-DE&amp;#39; languageName = &amp;#39;Deutsch&amp;#39; title = &amp;#39;Projekt Dokumentation&amp;#39; weight = 1 [languages.en] languageCode = &amp;#39;en-US&amp;#39; languageName = &amp;#39;English&amp;#39; title = &amp;#39;Project Documentation&amp;#39; weight = 2 { &amp;#34;defaultContentLanguage&amp;#34;: &amp;#34;de&amp;#34;, &amp;#34;defaultContentLanguageInSubdir&amp;#34;: true, &amp;#34;languages&amp;#34;: { &amp;#34;de&amp;#34;: { &amp;#34;languageCode&amp;#34;: &amp;#34;de-DE&amp;#34;, &amp;#34;languageName&amp;#34;: &amp;#34;Deutsch&amp;#34;, &amp;#34;title&amp;#34;: &amp;#34;Projekt Dokumentation&amp;#34;, &amp;#34;weight&amp;#34;: 1 }, &amp;#34;en&amp;#34;: { &amp;#34;languageCode&amp;#34;: &amp;#34;en-US&amp;#34;, &amp;#34;languageName&amp;#34;: &amp;#34;English&amp;#34;, &amp;#34;title&amp;#34;: &amp;#34;Project Documentation&amp;#34;, &amp;#34;weight&amp;#34;: 2 } } } Template:</description></item><item><title>IsServer</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/isserver/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/isserver/</guid><description> Deprecated in v0.120.0.
Use hugo.IsServer instead.
{{ .Site.IsServer }} → true/false</description></item><item><title>Language</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/language/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/language/</guid><description>The Language method on a Site object returns the language object for the given site. The language object points to the language definition in the site configuration.
You can also use the Language method on a Page object. See details.
Methods The examples below assume the following in your site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; languages: de: languageCode: de-DE languageDirection: ltr languageName: Deutsch weight: 1 [languages] [languages.de] languageCode = &amp;#39;de-DE&amp;#39; languageDirection = &amp;#39;ltr&amp;#39; languageName = &amp;#39;Deutsch&amp;#39; weight = 1 { &amp;#34;languages&amp;#34;: { &amp;#34;de&amp;#34;: { &amp;#34;languageCode&amp;#34;: &amp;#34;de-DE&amp;#34;, &amp;#34;languageDirection&amp;#34;: &amp;#34;ltr&amp;#34;, &amp;#34;languageName&amp;#34;: &amp;#34;Deutsch&amp;#34;, &amp;#34;weight&amp;#34;: 1 } } } Lang (string) The language tag as defined by RFC 5646.</description></item><item><title>LanguagePrefix</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/languageprefix/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/languageprefix/</guid><description>Consider this site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; defaultContentLanguage: de defaultContentLanguageInSubdir: false languages: de: languageCode: de-DE languageDirection: ltr languageName: Deutsch title: Projekt Dokumentation weight: 1 en: languageCode: en-US languageDirection: ltr languageName: English title: Project Documentation weight: 2 defaultContentLanguage = &amp;#39;de&amp;#39; defaultContentLanguageInSubdir = false [languages] [languages.de] languageCode = &amp;#39;de-DE&amp;#39; languageDirection = &amp;#39;ltr&amp;#39; languageName = &amp;#39;Deutsch&amp;#39; title = &amp;#39;Projekt Dokumentation&amp;#39; weight = 1 [languages.en] languageCode = &amp;#39;en-US&amp;#39; languageDirection = &amp;#39;ltr&amp;#39; languageName = &amp;#39;English&amp;#39; title = &amp;#39;Project Documentation&amp;#39; weight = 2 { &amp;#34;defaultContentLanguage&amp;#34;: &amp;#34;de&amp;#34;, &amp;#34;defaultContentLanguageInSubdir&amp;#34;: false, &amp;#34;languages&amp;#34;: { &amp;#34;de&amp;#34;: { &amp;#34;languageCode&amp;#34;: &amp;#34;de-DE&amp;#34;, &amp;#34;languageDirection&amp;#34;: &amp;#34;ltr&amp;#34;, &amp;#34;languageName&amp;#34;: &amp;#34;Deutsch&amp;#34;, &amp;#34;title&amp;#34;: &amp;#34;Projekt Dokumentation&amp;#34;, &amp;#34;weight&amp;#34;: 1 }, &amp;#34;en&amp;#34;: { &amp;#34;languageCode&amp;#34;: &amp;#34;en-US&amp;#34;, &amp;#34;languageDirection&amp;#34;: &amp;#34;ltr&amp;#34;, &amp;#34;languageName&amp;#34;: &amp;#34;English&amp;#34;, &amp;#34;title&amp;#34;: &amp;#34;Project Documentation&amp;#34;, &amp;#34;weight&amp;#34;: 2 } } } When visiting the German language site:</description></item><item><title>Languages</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/languages/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/languages/</guid><description>The Languages method on a Site object returns a collection of language objects for all sites, ordered by language weight. Each language object points to its language definition in the site configuration.
To view the data structure:
&amp;lt;pre&amp;gt;{{ jsonify (dict &amp;#34;indent&amp;#34; &amp;#34; &amp;#34;) .Site.Languages }}&amp;lt;/pre&amp;gt; With this site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; defaultContentLanguage: de defaultContentLanguageInSubdir: false languages: de: languageCode: de-DE languageDirection: ltr languageName: Deutsch title: Projekt Dokumentation weight: 1 en: languageCode: en-US languageDirection: ltr languageName: English title: Project Documentation weight: 2 defaultContentLanguage = &amp;#39;de&amp;#39; defaultContentLanguageInSubdir = false [languages] [languages.</description></item><item><title>LastChange</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/lastchange/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/lastchange/</guid><description>The LastChange method on a Site object returns a time.Time value. Use this with time functions and methods. For example:
{{ .Site.LastChange | time.Format &amp;#34;:date_long&amp;#34; }} → October 16, 2023</description></item><item><title>MainSections</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/mainsections/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/mainsections/</guid><description>Site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; params: mainSections: - books - films [params] mainSections = [&amp;#39;books&amp;#39;, &amp;#39;films&amp;#39;] { &amp;#34;params&amp;#34;: { &amp;#34;mainSections&amp;#34;: [ &amp;#34;books&amp;#34;, &amp;#34;films&amp;#34; ] } } Template:
{{ .Site.MainSections }} → [books films] If params.mainSections is not defined in the site configuration, this method returns a slice with one element&amp;mdash;the top level section with the most pages.
With this content structure, the &amp;ldquo;films&amp;rdquo; section has the most pages:</description></item><item><title>Menus</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/menus/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/menus/</guid><description>The Menus method on a Site object returns a collection of menus, where each menu contains one or more entries, either flat or nested. Each entry points to a page within the site, or to an external resource.
Menus can be defined and localized in several ways. Please see the menus section for a complete explanation and examples.
A site can have multiple menus. For example, a main menu and a footer menu:</description></item><item><title>Pages</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/pages/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/pages/</guid><description>This method returns all page kinds in the current language. That includes the home page, section pages, taxonomy pages, term pages, and regular pages.
In most cases you should use the RegularPages method instead.
{{ range .Site.Pages }} &amp;lt;h2&amp;gt;&amp;lt;a href=&amp;#34;{{ .RelPermalink }}&amp;#34;&amp;gt;{{ .LinkTitle }}&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt; {{ end }}</description></item><item><title>Param</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/param/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/param/</guid><description>The Param method on a Site object is a convenience method to return the value of a user-defined parameter in the site configuration.
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; params: display_toc: true [params] display_toc = true { &amp;#34;params&amp;#34;: { &amp;#34;display_toc&amp;#34;: true } } {{ .Site.Param &amp;#34;display_toc&amp;#34; }} → true The above is equivalent to either of these:
{{ .Site.Params.display_toc }} {{ index .Site.Params &amp;#34;display_toc&amp;#34; }}</description></item><item><title>Params</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/params/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/params/</guid><description>With this site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; params: author: email: jsmith@example.org name: John Smith copyright-year: &amp;#34;2023&amp;#34; layouts: rfc_1123: Mon, 02 Jan 2006 15:04:05 MST rfc_3339: &amp;#34;2006-01-02T15:04:05-07:00&amp;#34; subtitle: The Best Widgets on Earth [params] copyright-year = &amp;#39;2023&amp;#39; subtitle = &amp;#39;The Best Widgets on Earth&amp;#39; [params.author] email = &amp;#39;jsmith@example.org&amp;#39; name = &amp;#39;John Smith&amp;#39; [params.layouts] rfc_1123 = &amp;#39;Mon, 02 Jan 2006 15:04:05 MST&amp;#39; rfc_3339 = &amp;#39;2006-01-02T15:04:05-07:00&amp;#39; { &amp;#34;params&amp;#34;: { &amp;#34;author&amp;#34;: { &amp;#34;email&amp;#34;: &amp;#34;jsmith@example.</description></item><item><title>RegularPages</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/regularpages/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/regularpages/</guid><description>{{ range .Site.RegularPages }} &amp;lt;h2&amp;gt;&amp;lt;a href=&amp;#34;{{ .RelPermalink }}&amp;#34;&amp;gt;{{ .LinkTitle }}&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt; {{ end }} By default, Hugo sorts page collections by:
The page weight as defined in front matter The page date as defined in front matter The page linkTitle as defined in front matter The file path If the linkTitle is not defined, Hugo evaluates the title instead.
To change the sort order, use any of the Pages sorting methods. For example:</description></item><item><title>Sections</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/sections/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/sections/</guid><description>Given this content structure:
content/ ├── books/ │ ├── book-1.md │ └── book-2.md ├── films/ │ ├── film-1.md │ └── film-2.md └── _index.md This template:
{{ range .Site.Sections }} &amp;lt;h2&amp;gt;&amp;lt;a href=&amp;#34;{{ .RelPermalink }}&amp;#34;&amp;gt;{{ .LinkTitle }}&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt; {{ end }} Is rendered to:
&amp;lt;h2&amp;gt;&amp;lt;a href=&amp;#34;/books/&amp;#34;&amp;gt;Books&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt; &amp;lt;h2&amp;gt;&amp;lt;a href=&amp;#34;/films/&amp;#34;&amp;gt;Films&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt;</description></item><item><title>Sites</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/sites/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/sites/</guid><description>With this site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; defaultContentLanguage: de defaultContentLanguageInSubdir: false languages: de: languageCode: de-DE languageDirection: ltr languageName: Deutsch title: Projekt Dokumentation weight: 1 en: languageCode: en-US languageDirection: ltr languageName: English title: Project Documentation weight: 2 defaultContentLanguage = &amp;#39;de&amp;#39; defaultContentLanguageInSubdir = false [languages] [languages.de] languageCode = &amp;#39;de-DE&amp;#39; languageDirection = &amp;#39;ltr&amp;#39; languageName = &amp;#39;Deutsch&amp;#39; title = &amp;#39;Projekt Dokumentation&amp;#39; weight = 1 [languages.en] languageCode = &amp;#39;en-US&amp;#39; languageDirection = &amp;#39;ltr&amp;#39; languageName = &amp;#39;English&amp;#39; title = &amp;#39;Project Documentation&amp;#39; weight = 2 { &amp;#34;defaultContentLanguage&amp;#34;: &amp;#34;de&amp;#34;, &amp;#34;defaultContentLanguageInSubdir&amp;#34;: false, &amp;#34;languages&amp;#34;: { &amp;#34;de&amp;#34;: { &amp;#34;languageCode&amp;#34;: &amp;#34;de-DE&amp;#34;, &amp;#34;languageDirection&amp;#34;: &amp;#34;ltr&amp;#34;, &amp;#34;languageName&amp;#34;: &amp;#34;Deutsch&amp;#34;, &amp;#34;title&amp;#34;: &amp;#34;Projekt Dokumentation&amp;#34;, &amp;#34;weight&amp;#34;: 1 }, &amp;#34;en&amp;#34;: { &amp;#34;languageCode&amp;#34;: &amp;#34;en-US&amp;#34;, &amp;#34;languageDirection&amp;#34;: &amp;#34;ltr&amp;#34;, &amp;#34;languageName&amp;#34;: &amp;#34;English&amp;#34;, &amp;#34;title&amp;#34;: &amp;#34;Project Documentation&amp;#34;, &amp;#34;weight&amp;#34;: 2 } } } This template:</description></item><item><title>Taxonomies</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/taxonomies/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/taxonomies/</guid><description>Conceptually, the Taxonomies method on a Site object returns a data structure such as:
yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; taxonomy a: - term 1: - page 1 - page 2 - term 2: - page 1 taxonomy b: - term 1: - page 2 - term 2: - page 1 - page 2 [[&amp;#39;taxonomy a&amp;#39;]] &amp;#39;term 1&amp;#39; = [&amp;#39;page 1&amp;#39;, &amp;#39;page 2&amp;#39;] [[&amp;#39;taxonomy a&amp;#39;]] &amp;#39;term 2&amp;#39; = [&amp;#39;page 1&amp;#39;] [[&amp;#39;taxonomy b&amp;#39;]] &amp;#39;term 1&amp;#39; = [&amp;#39;page 2&amp;#39;] [[&amp;#39;taxonomy b&amp;#39;]] &amp;#39;term 2&amp;#39; = [&amp;#39;page 1&amp;#39;, &amp;#39;page 2&amp;#39;] { &amp;#34;taxonomy a&amp;#34;: [ { &amp;#34;term 1&amp;#34;: [ &amp;#34;page 1&amp;#34;, &amp;#34;page 2&amp;#34; ] }, { &amp;#34;term 2&amp;#34;: [ &amp;#34;page 1&amp;#34; ] } ], &amp;#34;taxonomy b&amp;#34;: [ { &amp;#34;term 1&amp;#34;: [ &amp;#34;page 2&amp;#34; ] }, { &amp;#34;term 2&amp;#34;: [ &amp;#34;page 1&amp;#34;, &amp;#34;page 2&amp;#34; ] } ] } For example, on a book review site you might create two taxonomies; one for genres and another for authors.</description></item><item><title>Title</title><link>https://v0-122-0--gohugoio.netlify.app/methods/site/title/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/methods/site/title/</guid><description>Site configuration:
hugo. yaml &amp;nbsp; toml &amp;nbsp; json &amp;nbsp; title: My Documentation Site title = &amp;#39;My Documentation Site&amp;#39; { &amp;#34;title&amp;#34;: &amp;#34;My Documentation Site&amp;#34; } Template:
{{ .Site.Title }} → My Documentation Site</description></item></channel></rss>