-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsitemap.xml
37 lines (37 loc) · 1012 Bytes
/
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
---
layout: null
index: false
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>{{ site.url }}</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
</url>
{% for post in site.posts limit: 10 %}{% if post.index %}
<url>
<loc>{{ post.url | absolute_url }}</loc>
{% if post.updated %}
<lastmod>{{ post.updated | date: '%Y-%m-%d' }}</lastmod>
{% else %}
<lastmod>{{ post.date | date: '%Y-%m-%d' }}</lastmod>
{% endif %}
</url>
{% endif %}{% endfor %}
{% for page in site.pages %}{% if page.index %}
<url>
<loc>{{ page.url | absolute_url }}</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
</url>
{% endif %}{% endfor %}
{% for page in site.events %}
<url>
<loc>{{ page.url | absolute_url }}</loc>
{% if post.updated %}
<lastmod>{{ page.updated | date: '%Y-%m-%d' }}</lastmod>
{% else %}
<lastmod>{{ page.date | date: '%Y-%m-%d' }}</lastmod>
{% endif %}
</url>
{% endfor %}
</urlset>