<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    {% for page in site.pages %}
    {% if page.layout != nil and page.layout != 'none' and page.url != '/sitemap.xml' and page.url != '/robots.txt' %}
    <url>
        <loc>{{ site.url }}{{ page.url }}</loc>
        <lastmod>{{ site.time | date_to_xmlschema }}</lastmod>
        <changefreq>monthly</changefreq>
        <priority>{% if page.url == "/" %}1.0{% else %}0.8{% endif %}</priority>
    </url>
    {% endif %}
    {% endfor %}
</urlset>
