2014-01-02 05:49:38 +00:00
|
|
|
---
|
|
|
|
layout: nil
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
<url>
|
|
|
|
<loc>{{ site.url }}</loc>
|
|
|
|
</url>
|
|
|
|
|
|
|
|
{% for post in site.posts %}
|
|
|
|
<url>
|
|
|
|
<loc>{{ site.url }}{{ post.url }}</loc>
|
2014-01-08 01:37:14 +00:00
|
|
|
<lastmod>{% if post.modified %}{{ post.modified | date_to_xmlschema }}{% else %}{{ post.date | date_to_xmlschema }}{% endif %}</lastmod>
|
2014-01-02 05:49:38 +00:00
|
|
|
</url>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for page in site.pages %}
|
|
|
|
<url>
|
|
|
|
<loc>{{ site.url }}{{ page.url }}</loc>
|
2014-01-08 01:37:14 +00:00
|
|
|
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
|
2014-01-02 05:49:38 +00:00
|
|
|
</url>
|
|
|
|
{% endfor %}
|
|
|
|
</urlset>
|