-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathsitemap.xml
More file actions
20 lines (19 loc) · 768 Bytes
/
Copy pathsitemap.xml
File metadata and controls
20 lines (19 loc) · 768 Bytes
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">
{% set root = get_section(path="_index.md") %}
{% for page in root.pages %}
<url>
<loc>{{ page.permalink | safe }}</loc>
{% if page.date %}<lastmod>{{ page.date | date(format="%Y-%m-%d") }}</lastmod>{% endif %}
</url>
{% endfor %}
{% for subsection in root.subsections %}
{% set sub = get_section(path=subsection) %}
{% for page in sub.pages %}
<url>
<loc>{{ page.permalink | safe }}</loc>
{% if page.date %}<lastmod>{{ page.date | date(format="%Y-%m-%d") }}</lastmod>{% endif %}
</url>
{% endfor %}
{% endfor %}
</urlset>