wfarr / wfarr.github.com

This URL has Read+Write access

wfarr.github.com / atom.haml
100644 28 lines (27 sloc) 0.713 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
: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 %}