diff --git a/atom.xml b/atom.xml index 97f6d6b51f..8017fe9d4b 100644 --- a/atom.xml +++ b/atom.xml @@ -6,10 +6,10 @@ title : Atom Feed {{ site.title }} - + {{ site.time | date_to_xmlschema }} - {{ site.production_url }} + {{ site.production_url }}/ {{ site.author.name }} {{ site.author.email }} @@ -19,10 +19,10 @@ title : Atom Feed {{ post.title }} - {{ post.date | date_to_xmlschema }} + {% if post.updated == null %}{{ post.date | date_to_xmlschema }}{% else %}{{ post.updated | append: '@10am' | date_to_xmlschema }}{% endif %} {{ site.production_url }}{{ post.id }} {{ post.content | xml_escape }} {% endfor %} - \ No newline at end of file + diff --git a/rss.xml b/rss.xml index 106b649c27..4286758641 100644 --- a/rss.xml +++ b/rss.xml @@ -4,14 +4,14 @@ title : RSS Feed --- - + {{ site.title }} {{ site.title }} - {{ site.author.name }} - {{ site.production_url }}{{ site.rss_path }} - {{ site.production_url }} - {{ site.time | date_to_xmlschema }} - {{ site.time | date_to_xmlschema }} + {{ site.production_url }}{{ site.JB.rss_path }} + + {{ site.time | date_to_rfc822 }} + {{ site.time | date_to_rfc822 }} 1800 {% for post in site.posts %} @@ -20,7 +20,7 @@ title : RSS Feed {{ post.content | xml_escape }} {{ site.production_url }}{{ post.url }} {{ site.production_url }}{{ post.id }} - {{ post.date | date_to_xmlschema }} + {{ post.date | date_to_rfc822 }} {% endfor %}