source/atom.haml
82d0251d
 ---
 layout: nil
f5aca904
 address: http://yoursite.com
 email: author@domain.com
 name: Your Name
 blog_title: My Blog
82d0251d
 ---
 <?xml version="1.0" encoding="utf-8"?>
 %feed(xmlns="http://www.w3.org/2005/Atom")
f5aca904
   %title= "#{page.name} - #{page.blog_title}"
   %link(href="#{page.address}/atom.xml" rel="self")
   %link(href="#{page.address}")
82d0251d
   %updated= Time.now.xmlschema
f5aca904
   %id=page.address
82d0251d
   %author
f5aca904
     %name= page.name
     %email= page.email
82d0251d
   - site.posts[0..14].each do |post|
     %entry
       %title= rp(post.title)
       %link(href="#{full_url(post.url)}")
       %updated=post.date.xmlschema
       %id= full_url(post.id)
       %content(type="html")
         = h(absolute_url(rp(post.content)))