forked from szcf-weiya/ESL-CN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
30 lines (30 loc) · 1.01 KB
/
sitemap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for nav_item in nav %}
{% if nav_item.children %}
{% for nav_item2 in nav_item.children %}
{% if nav_item2.children %}
{% for nav_item3 in nav_item2.children %}
<url>
<loc>{{ config.site_url }}{{ nav_item3.abs_url }}</loc>
<lastmod>{{nav_item3.update_date}}</lastmod>
<changefreq>daily</changefreq>
</url>
{% endfor %}
{% else %}
<url>
<loc>{{ config.site_url }}{{ nav_item2.abs_url }}</loc>
<lastmod>{{nav_item2.update_date}}</lastmod>
<changefreq>daily</changefreq>
</url>
{% endif %}
{% endfor %}
{% else %}
<url>
<loc>{{ config.site_url }}{{ nav_item.abs_url }}</loc>
<lastmod>{{nav_item.update_date}}</lastmod>
<changefreq>daily</changefreq>
</url>
{% endif %}
{% endfor %}
</urlset>