summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/sitemaps/templates/sitemap_index.xml
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/sitemaps/templates/sitemap_index.xml')
-rw-r--r--webapp/django/contrib/sitemaps/templates/sitemap_index.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/webapp/django/contrib/sitemaps/templates/sitemap_index.xml b/webapp/django/contrib/sitemaps/templates/sitemap_index.xml
new file mode 100644
index 0000000000..497ae8bb81
--- /dev/null
+++ b/webapp/django/contrib/sitemaps/templates/sitemap_index.xml
@@ -0,0 +1,5 @@
+{% autoescape off %}<?xml version="1.0" encoding="UTF-8"?>
+<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+{% for location in sitemaps %}<sitemap><loc>{{ location|escape }}</loc></sitemap>{% endfor %}
+</sitemapindex>
+{% endautoescape %}