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
|
|
|
|
2015-01-10 18:40:00 +00:00
|
|
|
{% for page in site.pages %}
|
|
|
|
{% if page.title != null and page.url != '/404.html' %}
|
2014-12-10 11:08:23 +00:00
|
|
|
<url>
|
2015-01-10 18:40:00 +00:00
|
|
|
<loc>{{ site.url }}{{ page.url }}</loc>
|
2014-12-10 11:08:23 +00:00
|
|
|
</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>
|