diff --git a/_config.yml b/_config.yml index 1f0b453..8198178 100644 --- a/_config.yml +++ b/_config.yml @@ -73,6 +73,8 @@ JB : archive_path: /archive.html categories_path : /categories.html tags_path : /tags.html + atom_path : /atom.xml + rss_path : /rss.xml # Settings for comments helper # Set 'provider' to the comment provider you want to use. diff --git a/_includes/themes/twitter/default.html b/_includes/themes/twitter/default.html index 0703bed..513797a 100644 --- a/_includes/themes/twitter/default.html +++ b/_includes/themes/twitter/default.html @@ -25,6 +25,11 @@ --> + + + + + diff --git a/atom.xml b/atom.xml index f088ba4..97f6d6b 100644 --- a/atom.xml +++ b/atom.xml @@ -6,7 +6,7 @@ title : Atom Feed {{ site.title }} - + {{ site.time | date_to_xmlschema }} {{ site.production_url }} diff --git a/rss.xml b/rss.xml new file mode 100644 index 0000000..106b649 --- /dev/null +++ b/rss.xml @@ -0,0 +1,28 @@ +--- +layout: nil +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 }} + 1800 + +{% for post in site.posts %} + + {{ post.title }} + {{ post.content | xml_escape }} + {{ site.production_url }}{{ post.url }} + {{ site.production_url }}{{ post.id }} + {{ post.date | date_to_xmlschema }} + +{% endfor %} + + +