docs/content/en/templates/sitemap.md
Hugo's embedded sitemap templates conform to v0.9 of the sitemap protocol.
With a monolingual project, Hugo generates a sitemap.xml file in the root of the publishDir using the embedded sitemap template.
With a multilingual project, Hugo generates:
publishDir using the embedded sitemapindex templateSee configure sitemap.
Override the default values for a given page in front matter.
{{< code-toggle file=news.md fm=true >}} title = 'News' [sitemap] changefreq = 'weekly' disable = true priority = 0.8 {{</ code-toggle >}}
To override the built-in sitemap.xml template, create a new layouts/sitemap.xml file. When ranging through the page collection, access the change frequency and priority with .Sitemap.ChangeFreq and .Sitemap.Priority respectively.
To override the built-in sitemapindex.xml template, create a new layouts/sitemapindex.xml file.
You may disable sitemap generation in your project configuration:
{{< code-toggle file=hugo >}} disableKinds = ['sitemap'] {{</ code-toggle >}}