summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Davis <thomasalwyndavis@gmail.com>2012-04-26 23:51:54 +1000
committerThomas Davis <thomasalwyndavis@gmail.com>2012-04-26 23:51:54 +1000
commit8aedd8bed70c323e0685e79a2558947253f0419a (patch)
treeffb6875811d4ef7e78349caa7b26ba9335ab89e8
parent6f8dfe4437e1e6a5e278fab00ec6c9dcec8ba26a (diff)
downloadbackbonetutorials-8aedd8bed70c323e0685e79a2558947253f0419a.zip
backbonetutorials-8aedd8bed70c323e0685e79a2558947253f0419a.tar.gz
backbonetutorials-8aedd8bed70c323e0685e79a2558947253f0419a.tar.bz2
hungry
-rw-r--r--atom.xml1
-rw-r--r--rss.xml25
2 files changed, 25 insertions, 1 deletions
diff --git a/atom.xml b/atom.xml
index b6f1968..5cf01d4 100644
--- a/atom.xml
+++ b/atom.xml
@@ -13,7 +13,6 @@ layout: nil
<name>Thomas Davis</name>
<email>thomasalwyndavis@gmail.com</email>
</author>
-
{% for post in site.posts limit:10 %}
<entry>
<title>{{ post.title }}</title>
diff --git a/rss.xml b/rss.xml
new file mode 100644
index 0000000..5cf01d4
--- /dev/null
+++ b/rss.xml
@@ -0,0 +1,25 @@
+---
+layout: nil
+---
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Thanks to cactus! - https://github.com/cactus -->
+<feed xmlns="http://www.w3.org/2005/Atom">
+ <title>Backbone Tutorials</title>
+ <link href="http://backbonetutorials.com/atom.xml" rel="self"/>
+ <link href="http://backbonetutorials.com/"/>
+ <updated>{{ site.time | date_to_xmlschema }}</updated>
+ <id>http://backbonetutorials.com/</id>
+ <author>
+ <name>Thomas Davis</name>
+ <email>thomasalwyndavis@gmail.com</email>
+ </author>
+ {% for post in site.posts limit:10 %}
+ <entry>
+ <title>{{ post.title }}</title>
+ <link href="http://backbonetutorials.com{{ post.url }}"/>
+ <updated>{{ post.date | date_to_xmlschema }}</updated>
+ <id>http://backbonetutorials.com{{ post.id }}</id>
+ <content type="html">{{ post.content | xml_escape }}</content>
+ </entry>
+ {% endfor %}
+</feed>