hugo/docs/content/templates/sitemap.md
Anthony Fok a6d3862b87 Docs: Minor copyediting/proofreading
- Correct some typos
- Add backticks and commas where necessary
- Use fenced code blocks specifying "bash" as the language
  to avoid weird highlighting
- Place commas outside of quotation marks surroundingn codes
  to avoid possible confusion
- Suggest users to use the discussion forum rather than the
  mailing list
2014-12-08 22:44:30 +01:00

1.6 KiB
Raw Blame History

aliases date linktitle menu next notoc prev title weight
/layout/sitemap/
2014-05-07 Sitemap
main
parent
layout
/templates/404 true /templates/rss Sitemap Template 95

A single Sitemap template is used to generate the sitemap.xml file. Hugo automatically comes with this template file. No work is needed on the users' part unless they want to customize sitemap.xml.

This page is of the type "node" and have all the node variables available to use in this template along with Sitemap-specific ones:

.Sitemap.ChangeFreq The page change frequency
.Sitemap.Priority The priority of the page

In addition to the standard node variables, the homepage has access to all site pages through .Data.Pages.

If provided, Hugo will use /layouts/sitemap.xml instead of the internal one.

Hugos sitemap.xml

This template respects the version 0.9 of the Sitemap Protocol.

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  {{ range .Data.Pages }}
  <url>
    <loc>{{ .Permalink }}</loc>
    <lastmod>{{ safeHtml ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ with .Sitemap.ChangeFreq }}
    <changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
    <priority>{{ .Sitemap.Priority }}</priority>{{ end }}
  </url>
  {{ end }}
</urlset>

Important: Hugo will automatically add the following header line to this file on render. Please don't include this in the template as it's not valid HTML.

<?xml version="1.0" encoding="utf-8" standalone="yes" ?>