-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsitemap_template.xml
37 lines (29 loc) · 982 Bytes
/
sitemap_template.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
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.cayzlh.com/tools/online-JSONFormat/</loc>
<lastmod>2020-05-15T09:00:22.146Z</lastmod>
</url>
<url>
<loc>https://www.cayzlh.com/tools/online-markdown/</loc>
<lastmod>2020-05-15T09:00:22.146Z</lastmod>
</url>
<url>
<loc>https://www.cayzlh.com/tools/online-hash/</loc>
<lastmod>2020-05-23T09:00:22.146Z</lastmod>
</url>
<url>
<loc>https://www.cayzlh.com/</loc>
<lastmod>2020-05-15T09:00:22.146Z</lastmod>
</url>
{% for post in posts %}
<url>
<loc>{{ config.url + config.root + post.path | uriencode }}</loc>
{% if post.updated %}
<lastmod>{{ post.updated.toISOString() }}</lastmod>
{% elif post.date %}
<lastmod>{{ post.date.toISOString() }}</lastmod>
{% endif %}
</url>
{% endfor %}
</urlset>