{#- Based on https://github.com/11ty/eleventy-base-blog/blob/main/content/sitemap.xml.njk ```twig -#} {%- for page in collections.all %} {% if page.data.permalink != false %} {{ site.base }}{{ page.url }} {{ page.date|date('c') }} {% endif %} {%- endfor %} {#``` Render from a standalone route/template that outputs `application/xml`: ```twig {% include 'blades/sitemap.xml.twig' %} ``` `date('c')` emits an ISO-8601 `lastmod`, which is what the sitemap spec expects. #}