Change datetimes in the <time> elements to ISO8601 format
diff --git a/templates/archives.html b/templates/archives.html
index 872fe49..b2bba9b 100644
--- a/templates/archives.html
+++ b/templates/archives.html
@@ -18,7 +18,7 @@
<h3>{{ month_articles[0].date.strftime('%B') }}</h3>
<ul>
{% for article in month_articles %}
- <li><time datetime="{{ article.date }}">{{ article.date.strftime('%b %d, %Y') }}</time> - <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
+ <li><time datetime="{{ article.date.isoformat() }}">{{ article.date.strftime('%b %d, %Y') }}</time> - <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}