Sitemap.xml Generator is a Jekyll plugin that generates a sitemap.xml file by traversing all of the available posts and pages.
url: http://danielgroves.net
)sitemap: filename:
if you want your sitemap to be called something other than sitemap.xml.sitemap: exclude:
list to exclude any pages that you don't want in the sitemap. sitemap: include_posts:
list to include any pages that are looping through your posts (e.g. "/index.html", "/notebook/index.md", etc.). This will ensure that right after you make a new post, the last modified date will be updated to reflect the new post.jekyll build
to re-generate your site.sitemap.xml
should be included in your _site folder.Configuration defaults:
sitemap:
filename: "/sitemap.xml"
exclude:
- "/atom.xml"
- "/feed.xml"
- "/feed/index.xml"
include_posts:
- "/index.html"
change_frequency_name: "change_frequency"
priority_name: "priority"
If you want to include the optional changefreq and priority attributes, simply include custom variables in the YAML Front Matter of those files. The names of these custom variables are defined in the config file as sitemap: change_frequency_name:
and sitemap: priority_name:
.
Author: Michael Levin (http://www.kinnetica.com) Configuration Update: Daniel Groves (http://danielgroves.net)
Distributed Under A Creative Commons License