wintersmith-sitemap

1.0.0 • Public • Published

wintersmith-sitemap Build Status

A Wintersmith plugin to generate a sitemap.xml file

Installation

Install globally or locally using npm:

npm install [-g] wintersmith-sitemap wintersmith-contents

Add 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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    1
    • latest

Version History

Package Sidebar

Install

npm i wintersmith-sitemap

Weekly Downloads

18

Version

1.0.0

License

MIT

Last publish

Collaborators

  • xavierdutreilh