blob: 9b70b46bf84a13308ac73d1fd470c0a169f552d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
layout: null
permalink: "sitemap.xml"
---
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for item in site.html_pages %}
<url>
<loc>{{ item.url | absolute_url | xml_escape }}</loc>
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
</url>
{% endfor %}
{% for item in site.posts %}
<url>
<loc>{{ item.url | absolute_url | xml_escape }}</loc>
<lastmod>{{ item.date | date_to_xmlschema }}</lastmod>
</url>
{% endfor %}
</urlset>
|