We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0850fd commit c5f930bCopy full SHA for c5f930b
1 file changed
themes/deis/sitemap.xml
@@ -0,0 +1,16 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3
+{% for nav_item in nav %}
4
+ {% if nav_item.children %}
5
+ {% for nav_item in nav_item.children %}
6
+ <url>
7
+ <loc>{{ site_url }}{{ nav_item.abs_url }}</loc>
8
+ </url>
9
+ {% endfor %}
10
+ {% else %}
11
12
13
14
+ {% endif %}
15
+{% endfor %}
16
+</urlset>
0 commit comments