mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
12 lines
510 B
Django/Jinja
12 lines
510 B
Django/Jinja
<?xml version="1.0" encoding="utf-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
|
{% for item in content %}
|
|
<url>
|
|
<loc>{{ item.out_path|string|replace('\\', '/')|full_url }}</loc>
|
|
<priority>{{ item.sort_priority / 100 }}</priority>
|
|
</url>
|
|
{% endfor %}
|
|
</urlset>
|