this repo has no description
1<?xml version="1.0" encoding="UTF-8"?>
2<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3 {%- for sitemap_entry in entries %}
4 {%- if sitemap_entry.extra | get(key="sitemap", default=true) %}
5 <url>
6 <loc>{{ sitemap_entry.permalink | escape_xml | safe }}</loc>
7 {%- if sitemap_entry.updated %}
8 <lastmod>{{ sitemap_entry.updated }}</lastmod>
9 {%- endif %}
10 </url>
11 {%- endif %}
12 {%- endfor %}
13</urlset>