We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 327b88a commit 5fe6ed4Copy full SHA for 5fe6ed4
site/sitemap.xml
@@ -0,0 +1,25 @@
1
+---
2
+layout:
3
4
+
5
+<?xml version="1.0" encoding="UTF-8"?>
6
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
7
+ {%- for page in site.pages -%}
8
+ {%- if page.url contains '.xml' or page.url contains 'assets' %}{%- else %}
9
+ <url>
10
+ <loc>{{ site.url }}{{ page.url }}</loc>
11
+ </url>
12
+ {%- endif -%}
13
+ {% endfor %}
14
+ {%- for page in site.sections -%}
15
+ {%- if page.layout == "redirect" -%}{%- continue -%}{%- endif %}
16
17
+ <loc>{{ site.url }}{{ page.url | replace: 'index.html', '' }}</loc>
18
19
+ {%- endfor -%}
20
+ {%- for page in site.wiki %}
21
22
23
24
+ {%- endfor %}
25
+</urlset>
0 commit comments