-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
37 lines (37 loc) · 1.02 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
31
32
33
34
35
36
37
---
---
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="sitemap.xsl"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://taoxiaolei.cn/</loc>
<priority>1.0</priority>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>Always</changefreq>
</url>
<url>
<loc>http://taoxiaolei.cn/about.html</loc>
<priority>0.8</priority>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>Always</changefreq>
</url>
<url>
<loc>http://taoxiaolei.cn/archive.html</loc>
<priority>0.8</priority>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>Always</changefreq>
</url>
<loc>http://taoxiaolei.cn/tags.html</loc>
<priority>0.8</priority>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
<changefreq>Always</changefreq>
</url>
{% for post in site.posts %}
<url>
<loc>http://taoxiaolei.cn{{ post.url }}</loc>
<priority>0.8</priority>
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
<changefreq>Always</changefreq>
</url>
{% endfor %}
</urlset>