1
0
Fork 0
blog.kempkens.io/sitemap.xml

31 lines
787 B
XML
Raw Normal View History

2014-03-23 19:40:19 +00:00
---
2014-08-13 19:11:56 +00:00
layout: null
2014-03-23 19:40:19 +00:00
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
2014-12-10 11:08:23 +00:00
<url>
<loc>{{ site.url }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</url>
2014-08-13 19:11:56 +00:00
2014-12-10 11:08:23 +00:00
{% assign pages_list = site.pages %}
{% for node in pages_list %}
{% if node.title != null and node.url != '/404.html' %}
<url>
<loc>{{ site.url }}{{ node.url }}</loc>
</url>
{% endif %}
{% endfor %}
2014-03-23 19:40:19 +00:00
2014-12-10 11:08:23 +00:00
{% for post in site.posts %}
2014-03-23 19:40:19 +00:00
<url>
2014-11-30 20:47:18 +00:00
<loc>{{ site.url }}{{ post.url }}</loc>
2014-12-10 11:08:23 +00:00
{% if post.modified != nil %}
<lastmod>{{ post.modified | date_to_xmlschema }}</lastmod>
{% else %}
<lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
{% endif %}
2014-03-23 19:40:19 +00:00
</url>
2014-12-10 11:08:23 +00:00
{% endfor %}
2014-08-13 19:11:56 +00:00
</urlset>