Added sitemap configuration documentation.
authorMichael Diamond <dimo414@gmail.com>
Thu, 6 Aug 2015 05:39:49 +0000 (01:39 -0400)
committerAnthony Fok <foka@debian.org>
Sat, 8 Aug 2015 21:04:52 +0000 (15:04 -0600)
docs/content/overview/configuration.md
docs/content/templates/sitemap.md

index afdcc4a37d9f3444cd9e8bda31d1e0c1de31884b..fc3d9b445d8bb7ae4a84782f44cdb8039f11dfd7 100644 (file)
@@ -121,7 +121,8 @@ Following is a list of Hugo-defined variables that you can configure and their c
     pygmentsStyle:              "monokai"
     # true: use pygments-css or false: color-codes directly
     pygmentsUseClasses:         false
-    sitemap:                    ""
+    # default sitemap configuration map
+    sitemap:
     # filesystem path to read files relative from
     source:                     ""
     staticdir:                  "static"
index 893139f4b40c799ca5d16c2a19fbd946d53d2632..39d9b803ed702e9a5785b96294bf9d8ad558ef53 100644 (file)
@@ -50,3 +50,13 @@ Protocol](http://www.sitemaps.org/protocol.html).
 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" ?>
+
+## Configuring sitemap.xml
+
+Defaults for `<changefreq>` and `<priority>` values can be set in the site's config file, e.g.:
+
+    [sitemap]
+      changefreq = "monthly"
+      priority = 0.5
+
+The same fields can be specified in an individual page's front matter in order to override the value for that page.
\ No newline at end of file