24 lines
872 B
XML
Executable File
24 lines
872 B
XML
Executable File
---
|
|
layout: null
|
|
---
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
|
|
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
|
{% for post in site.posts %}
|
|
<url>
|
|
<loc>{{ post.url | prepend: site.baseurl | prepend: site.url }}</loc>
|
|
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
|
|
<changefreq>weekly</changefreq>
|
|
</url>
|
|
{% endfor %}
|
|
{% for post in site.pages %}{% if post.isNavItem %}
|
|
<url>
|
|
<loc>{{ post.url | prepend: site.baseurl | prepend: site.url }}</loc>
|
|
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
|
|
<changefreq>weekly</changefreq>
|
|
</url>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</urlset> |