diff options
author | Thomas Davis <thomasalwyndavis@gmail.com> | 2012-04-26 23:51:54 +1000 |
---|---|---|
committer | Thomas Davis <thomasalwyndavis@gmail.com> | 2012-04-26 23:51:54 +1000 |
commit | 8aedd8bed70c323e0685e79a2558947253f0419a (patch) | |
tree | ffb6875811d4ef7e78349caa7b26ba9335ab89e8 | |
parent | 6f8dfe4437e1e6a5e278fab00ec6c9dcec8ba26a (diff) | |
download | backbonetutorials-8aedd8bed70c323e0685e79a2558947253f0419a.zip backbonetutorials-8aedd8bed70c323e0685e79a2558947253f0419a.tar.gz backbonetutorials-8aedd8bed70c323e0685e79a2558947253f0419a.tar.bz2 |
hungry
-rw-r--r-- | atom.xml | 1 | ||||
-rw-r--r-- | rss.xml | 25 |
2 files changed, 25 insertions, 1 deletions
@@ -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> @@ -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> |