diff --git a/_site/sitemap.xml b/_site/sitemap.xml
index 69eecaa..3686de8 100644
--- a/_site/sitemap.xml
+++ b/_site/sitemap.xml
@@ -17,8 +17,10 @@
http://0.0.0.0:4000/years/2019
- 2020-12-25
- always
+
+ 2020-12-25T18:13:08+00:00
+
+ monthly
0.5
@@ -39,8 +41,10 @@
http://0.0.0.0:4000/years/2020
- 2020-12-25
- always
+
+ 2020-12-25T18:13:08+00:00
+
+ monthly
0.5
@@ -79,8 +83,10 @@
http://0.0.0.0:4000/auto-refresh
- 2020-12-25
- always
+
+ 2020-12-25T18:13:08+00:00
+
+ monthly
0.5
@@ -98,8 +104,10 @@
http://0.0.0.0:4000/
- 2020-12-25
- always
+
+ 2020-12-25T18:13:08+00:00
+
+ monthly
0.5
@@ -123,114 +131,146 @@
http://0.0.0.0:4000/articles/2019/young-reporter-team-ready-to-go.html
- 2020-12-25
+
+ 2019-03-06T09:36:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/whats-next-for-reading-prison.html
- 2020-12-25
+
+ 2019-03-06T10:38:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/what-is-in-the-patients-best-interest.html
- 2020-12-25
+
+ 2019-03-06T11:46:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/video-games-virtual-fantasy-or-a-virtual-prison.html
- 2020-12-25
+
+ 2019-03-06T12:19:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/tennis-club-needs-to-relocate-as-redevelopment-plans-are-called-out.html
- 2020-12-25
+
+ 2019-03-06T12:32:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/could-sky-high-aims-bring-reading-down.html
- 2020-12-25
+
+ 2019-03-06T12:56:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/a-possible-autism-anorexia-link-has-been-found-so-what-are-we-doing-about-it.html
- 2020-12-25
+
+ 2019-03-06T13:38:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/book-week-real-life-issues-inspire-sarah-govett.html
- 2020-12-25
+
+ 2019-03-06T14:14:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/student-survey-shows-rosa-parks-is-most-inspirational-woman-ever.html
- 2020-12-25
+
+ 2019-03-06T14:38:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/are-the-roads-around-your-home-and-school-safe.html
- 2020-12-25
+
+ 2019-03-06T14:46:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2019/finished-product.html
- 2020-12-25
+
+ 2019-03-06T15:52:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2020/reading-gaol-and-its-march-for-the-past.html
- 2020-12-25
+
+ 2020-03-12T14:58:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2020/power-to-the-9s.html
- 2020-12-25
+
+ 2020-03-12T15:25:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2020/charity-children-want-to-create-change.html
- 2020-12-25
+
+ 2020-03-14T15:25:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2020/libraries-must-stay-open.html
- 2020-12-25
+
+ 2020-03-19T08:54:00+00:00
+
always
- 0.5
+ 0.3
http://0.0.0.0:4000/articles/2020/its-just-not-cricket-anymore.html
- 2020-12-25
+
+ 2020-03-29T10:25:00+01:00
+
always
- 0.5
+ 0.3
diff --git a/sitemap.xml b/sitemap.xml
index e43769f..ac62869 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -23,17 +23,21 @@ search: exclude
{% assign number_page_check = false %}
{% endif %}
- {% if is_number == false and page.url != "/sitemap.xml" and page_url_end != ".css" %}
+ {% unless is_number or page.url == "/sitemap.xml" or page_url_end == ".css" %}
{% assign other_page_check = true %}
{% else %}
{% assign other_page_check = false %}
- {% endif %}
+ {% endunless %}
{% if number_page_check or other_page_check %}
{{ page.url | absolute_url | remove: ".html" }}
- {{ site.time | date: '%Y-%m-%d' }}
- always
+ {% if page.date %}
+ {{ page.date | date_to_xmlschema }}
+ {% else %}
+ {{ site.time | date_to_xmlschema }}
+ {% endif %}
+ monthly
0.5
{% endif %}
@@ -42,9 +46,13 @@ search: exclude
{% for article in site.articles %}
{{ article.url | absolute_url }}
- {{ site.time | date: '%Y-%m-%d' }}
+ {% if article.date %}
+ {{ article.date | date_to_xmlschema }}
+ {% else %}
+ {{ site.time | date_to_xmlschema }}
+ {% endif %}
always
- 0.5
+ 0.3
{% endfor %}