19 lines
548 B
XML
19 lines
548 B
XML
---
|
|
---
|
|
<?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 %}
|
|
<url>
|
|
<loc>http://sitespeed.io{{ page.url | remove: 'index.html' }}</loc>
|
|
{% if page.url contains 'release-notes' %}
|
|
<changefreq>monthly</changefreq>
|
|
<priority>0.7</priority>
|
|
{% else %}
|
|
<changefreq>daily</changefreq>
|
|
<priority>1.0</priority>
|
|
{% endif %}
|
|
</url>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</urlset> |