26 lines
1007 B
XML
26 lines
1007 B
XML
---
|
|
layout: null
|
|
sitemap:
|
|
exclude: 'yes'
|
|
---
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
{% if page.xsl %}
|
|
<?xml-stylesheet type="text/xsl" href="{{ "/sitemap.xsl" | absolute_url }}"?>
|
|
{% endif %}
|
|
<urlset 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" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{% assign pages = site.html_pages | where_exp:'doc','doc.sitemap != false' | where_exp:'doc','doc.url != "/404.html"' %}
|
|
{% for page in pages %}
|
|
<url>
|
|
<loc>{{ page.url | replace:'/index.html','/' | absolute_url | xml_escape }}</loc>
|
|
{% if page.last_modified_at %}
|
|
<lastmod>{{ page.last_modified_at | date_to_xmlschema }}</lastmod>
|
|
{% endif %}
|
|
{% if page.sitemap.priority %}
|
|
<priority>{{ page.sitemap.priority }}</priority>
|
|
{% else %}
|
|
<priority>0.8</priority>
|
|
{% endif %}
|
|
</url>
|
|
{% endfor %}
|
|
</urlset>
|