the main website would not build due to requiring the extra.blog config. nofusscomputing/infrastructure/website!8 !2
12 lines
699 B
XML
12 lines
699 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{%- for file in pages -%}
|
|
{% if not file.page.is_link %}
|
|
<url>
|
|
<loc>{% if file.page.canonical_url %}{{ file.page.canonical_url|e }}{% else %}{{ file.page.abs_url|e }}{% endif %}</loc>
|
|
{% if file.page.meta.git_revision_date_localized %}<lastmod>{{ file.page.meta.git_revision_date_localized.replace("\n", "").replace("\r", "").replace('<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_date">', '').replace('</span>','') }}</lastmod>{% endif %}
|
|
<changefreq>weekly</changefreq>
|
|
</url>
|
|
{%- endif -%}
|
|
{% endfor %}
|
|
</urlset> |