From 667e11c4ec3835d959aab1797647bd0a49869674 Mon Sep 17 00:00:00 2001 From: etienne Date: Tue, 21 Oct 2014 23:35:24 +0200 Subject: Init commit --- content/templates/sitemap.md | 52 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 content/templates/sitemap.md (limited to 'content/templates/sitemap.md') diff --git a/content/templates/sitemap.md b/content/templates/sitemap.md new file mode 100644 index 0000000..227c078 --- /dev/null +++ b/content/templates/sitemap.md @@ -0,0 +1,52 @@ +--- +aliases: +- /layout/sitemap/ +date: 2014-05-07 +linktitle: Sitemap +menu: + main: + parent: layout +next: /templates/404 +notoc: true +prev: /templates/rss +title: Sitemap Template +weight: 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 the sitemap.xml.** + +This page is of the type "node" and have all the [node +variables](/layout/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. + +## Hugo’s sitemap.xml + +This template respects the version 0.9 of the [Sitemap +Protocol](http://www.sitemaps.org/protocol.html). + + + {{ range .Data.Pages }} + + {{ .Permalink }} + {{ safeHtml ( .Date.Format "2006-01-02T15:04:05-07:00" ) }}{{ with .Sitemap.ChangeFreq }} + {{ . }}{{ end }}{{ if ge .Sitemap.Priority 0.0 }} + {{ .Sitemap.Priority }}{{ end }} + + {{ end }} + + +*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.* + + -- cgit v1.3