:plain
---
layout: nil
---
!!! XML
%feed{ :xmlns => "http://www.w3.org/2005/Atom" }
%title Will Farrington
%link{ :href => "http://wfarr.github.com/atom.xml", :rel => "self" }/
%link{ :href => "http://wfarr.github.com" }/
%updated
{{ site.time | date_to_xmlschema }}
%id http://wfarr.github.com/
%author
%name Will Farrington
%email wcfarrington@gmail.com
{% for post in site.posts %}
%entry
%title
{{ post.title }}
%link{ :href => "http://wfarr.github.com{{ post.url}}" }/
%updated
{{ post.date | date_to_xmlschema }}
%id
http://wfarr.github.com{{ post.id }}
%content{ :type => "html" }
{{ post.content | xml_escape }}
{% endfor %}