wintersmith-sitemap v1.0.0
wintersmith-sitemap 
A Wintersmith plugin to generate a sitemap.xml file
Installation
Install globally or locally using npm:
npm install [-g] wintersmith-sitemap wintersmith-contentsAdd wintersmith-sitemap and wintersmith-contents to your config.json:
{
"plugins": [
"wintersmith-contents",
"wintersmith-sitemap"
]
}Define the url property in the locals property:
{
"locals": {
"url": "http://example.com"
}
}Usage
wintersmith-sitemap extracts all Markdown pages from the content tree and lists them into the sitemap. By default, the sitemap only contains the location of all pages. If you need to include more information like the last modification date, the change frequency, or the priority, you need to define this information in the metadata:
---
title: Hello, world!
date: 2014-10-31 23:59:59
changefreq: weekly
priority: 0.8
template: entry.jade
---If you want to exclude a page from the sitemap, you need to define noindex: true in the metadata:
---
title: Hello, world!
date: 2014-10-31 23:59:59
template: entry.jade
noindex: true
---License
wintersmith-sitemap is released under the MIT license.
8 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago