mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 03:17:07 +00:00
38 lines
970 B
XML
38 lines
970 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>
|
|
<<<<<<< HEAD
|
|
<changefreq>hourly</changefreq>
|
|
=======
|
|
<changefreq>always</changefreq>
|
|
>>>>>>> 33d7045a1dea50b0ffc13dfc815da48a2797d44d
|
|
<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>
|
|
<<<<<<< HEAD
|
|
<changefreq>hourly</changefreq>
|
|
=======
|
|
<changefreq>always</changefreq>
|
|
>>>>>>> 33d7045a1dea50b0ffc13dfc815da48a2797d44d
|
|
<priority>0.5</priority>
|
|
</url>
|
|
{% endfor %}
|
|
</urlset>
|