homepage/sitemap.xml

20 lines
505 B
XML
Raw Normal View History

2014-02-06 19:18:00 -05:00
---
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
2014-05-17 18:22:27 -04:00
{% for post in site.posts %}
2014-02-06 19:18:00 -05:00
<url>
2014-05-17 18:22:27 -04:00
<loc>{{ site.url }}{{ post.url | remove: 'index.html' }}</loc>
</url>
{% endfor %}
{% for page in site.pages %}
{% if page.layout != nil %}
{% if page.layout != 'redirect' %}
<url>
<loc>{{ site.url }}{{ page.url | remove: 'index.html' }}</loc>
2014-02-06 19:18:00 -05:00
</url>
{% endif %}
{% endif %}
2014-05-17 18:22:27 -04:00
{% endfor %}
</urlset>