--- layout: compress # The Sitemap template # © 2017-2019 Cotes Chung # MIT License --- {% for post in site.posts %} {% unless post.published == false %} {% capture lastmod %} {% if post.lastmod %} {{ post.lastmod }} {% elsif post.date %} {{ post.date }} {% else %} {{ site.time }} {% endif %} {% endcapture %} {{ site.url | append: site.baseurl | append: post.url }} {{ lastmod | date_to_xmlschema }} {% if post.sitemap.changefreq %} {{ post.sitemap.changefreq }} {% else %} monthly {% endif %} {% if post.sitemap.priority %} {{ post.sitemap.priority }} {% else %} 0.5 {% endif %} {% endunless %} {% endfor %} {% for page in site.pages %} {% if site.sitemap_exclude contains page.url %} {% continue %} {% endif %} {% capture lastmod %} {% if page.lastmod %} {{ page.lastmod }} {% elsif page.date %} {{ page.date }} {% else %} {{ site.time }} {% endif %} {% endcapture %} {{ site.url | append: site.baseurl | append: page.url | remove: "index.html" }} {{ lastmod | date_to_xmlschema }} {% if page.sitemap.changefreq %} {{ page.sitemap.changefreq }} {% else %} monthly {% endif %} {% if page.sitemap.priority %} {{ page.sitemap.priority }} {% else %} 0.3 {% endif %} {% endfor %}