paulwalko.github.io/sitemap.xml

24 lines
872 B
XML
Raw Normal View History

2016-06-09 17:51:55 -04:00
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
2016-06-14 21:54:24 -04:00
<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 %}
2016-06-09 17:51:55 -04:00
<url>
2016-06-14 21:54:24 -04:00
<loc>{{ post.url | prepend: site.baseurl | prepend: site.url }}</loc>
2016-06-09 17:51:55 -04:00
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
2016-06-14 21:54:24 -04:00
<changefreq>weekly</changefreq>
2016-06-09 17:51:55 -04:00
</url>
2016-06-14 21:54:24 -04:00
{% endfor %}
{% for post in site.pages %}{% if post.isNavItem %}
2016-06-09 17:51:55 -04:00
<url>
2016-06-14 21:54:24 -04:00
<loc>{{ post.url | prepend: site.baseurl | prepend: site.url }}</loc>
2016-06-09 17:51:55 -04:00
<lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
2016-06-14 21:54:24 -04:00
<changefreq>weekly</changefreq>
2016-06-09 17:51:55 -04:00
</url>
{% endif %}
2016-06-14 21:54:24 -04:00
{% endfor %}
2016-06-09 17:51:55 -04:00
</urlset>