generated from shgysk8zer0/jekyll-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsitemap.xml
29 lines (29 loc) · 825 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
---
layout: null
index: false
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts limit: 10 %}{% if post.index and post.hidden != true %}
<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>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
</url>
{% endfor %}
</urlset>