Skip to content

Commit

Permalink
Added Atom feed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtodd committed Feb 7, 2009
1 parent f0cbb0a commit c562a26
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions atom.xml
@@ -0,0 +1,27 @@
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

<title>Matt Todd</title>
<link href="http://mtodd.github.com/atom.xml" rel="self"/>
<link href="http://mtodd.github.com/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://mtodd.github.com/</id>
<author>
<name>Matt Todd</name>
<email>chiology@gmail.com</email>
</author>

{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://tom.preston-werner.com{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://tom.preston-werner.com{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}

</feed>

0 comments on commit c562a26

Please sign in to comment.