Files
bbc-young-reporter/sitemap.xml
Matthew Grove 54dd7f9f34 Update sitemap
2019-02-05 07:33:51 +00:00

30 lines
750 B
XML

---
layout: none
search: exclude
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in site.pages %}
{% if page.url != "/assets/css/style.css" %}
{% if page.url != "/sitemap.xml" %}
<url>
<loc>{{ page.url }}</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>hourly</changefreq>
<priority>0.5</priority>
</url>
{% endif %}
{% endif %}
{% endfor %}
{% for post in site.posts %}
<url>
<loc>{{ post.url }}</loc>
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
<changefreq>hourly</changefreq>
<priority>0.5</priority>
</url>
{% endfor %}
</urlset>