From 82d0251da120186c27791b7c073aa103d73c2b31 Mon Sep 17 00:00:00 2001 From: B Mathis Date: Sun, 18 Oct 2009 19:07:36 -0500 Subject: improved starting point --- source/atom.haml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 source/atom.haml (limited to 'source/atom.haml') diff --git a/source/atom.haml b/source/atom.haml new file mode 100644 index 00000000..d8cfe040 --- /dev/null +++ b/source/atom.haml @@ -0,0 +1,21 @@ +--- +layout: nil +--- + +%feed(xmlns="http://www.w3.org/2005/Atom") + %title Your Name - Your Site + %link(href="yoursite.com/atom.xml" rel="self") + %link(href="yoursite.com") + %updated= Time.now.xmlschema + %id http://yoursite.com/ + %author + %name Your Name + %email user[at]domain.com + - 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))) \ No newline at end of file -- cgit v1.2.1