mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-04 03:44:43 +00:00
17 lines
520 B
Text
17 lines
520 B
Text
|
|
---
|
||
|
|
permalink: /sitemap.xml
|
||
|
|
eleventyExcludeFromCollections: true
|
||
|
|
---
|
||
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||
|
|
{%- for page in collections.all -%}
|
||
|
|
{%- if not page.data.draft %}
|
||
|
|
<url>
|
||
|
|
<loc>{{ site.url }}{{ page.url | url }}</loc>
|
||
|
|
<lastmod>{{ page.date.toISOString() }}</lastmod>
|
||
|
|
<changefreq>{{ page.data.changeFreq if page.data.changeFreq else "weekly" }}</changefreq>
|
||
|
|
</url>
|
||
|
|
{%- endif -%}
|
||
|
|
{%- endfor -%}
|
||
|
|
</urlset>
|