Templates NEW Sitemap

Usage example for /11ty/eleventy-plugin-rss:

---
permalink: /sitemap.xml
layout: false
eleventyExcludeFromCollections: true
---
{% include 'blades/sitemap.xml.njk' %}

How it works

version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
  {%- for page in collections.all %}
    {% if page.data.permalink != false %}
      <url>
        <loc>{{ site.base }}{{ page.url }}</loc>
        <lastmod>{{ page.date | date }}</lastmod>
      </url>
    {% endif %}
  {%- endfor %}
</urlset>
{#```