-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
sitemap.xml
34 lines (33 loc) · 1.13 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
---
title : Sitemaps
---
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>{{ site.url }}{{ site.baseurl }}/</loc>
<lastmod>{{ site.time | date:'%Y-%m-%d' }}</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>{{ site.url }}{{ site.baseurl }}/archives/</loc>
<lastmod>{{ site.time | date:'%Y-%m-%d' }}</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>{{ site.url }}{{ site.baseurl }}/categories/</loc>
<lastmod>{{ site.time | date:'%Y-%m-%d' }}</lastmod>
<changefreq>weekly</changefreq>
</url>
<url>
<loc>{{ site.url }}{{ site.baseurl }}/tags/</loc>
<lastmod>{{ site.time | date:'%Y-%m-%d' }}</lastmod>
<changefreq>weekly</changefreq>
</url>
{% for post in site.posts %}
<url>
<loc>{{ site.url }}{{ site.baseurl }}{{ post.url }}</loc>
<lastmod>{% if post.modified %}{{ post.modified }}{% else %}{{ post.date | date:'%Y-%m-%d' }}{% endif %}</lastmod>
<changefreq>never</changefreq>
</url>
{% endfor %}
</urlset>