This file is indexed.

/usr/lib/python3/dist-packages/mkdocs/templates/sitemap.xml is in mkdocs 0.16.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for nav_item in nav %}
    {% if nav_item.children %}
        {% for nav_item in nav_item.children %}
    <url>
     <loc>{{ config.site_url }}{{ nav_item.abs_url }}</loc>
     <lastmod>{{nav_item.update_date}}</lastmod>
     <changefreq>daily</changefreq>
    </url>
        {% endfor %}
    {% else %}
    <url>
     <loc>{{ config.site_url }}{{ nav_item.abs_url }}</loc>
     <lastmod>{{nav_item.update_date}}</lastmod>
     <changefreq>daily</changefreq>
    </url>
    {% endif %}
{% endfor %}
</urlset>