diff options
-rw-r--r-- | source/_layouts/default.haml | 6 | ||||
-rw-r--r-- | source/atom.haml | 16 |
2 files changed, 15 insertions, 7 deletions
diff --git a/source/_layouts/default.haml b/source/_layouts/default.haml index cec53767..4df3c398 100644 --- a/source/_layouts/default.haml +++ b/source/_layouts/default.haml @@ -1,3 +1,7 @@ +--- +blog_title: My Blog +--- + !!! 1.1 Transitional %html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en") %head @@ -10,7 +14,7 @@ %body #header .page_width - %a.title(href="/") My Blog + %a.title(href="/")=page.blog_title %ul#header_nav.nav %li.alpha %a(href="/archives") Archives diff --git a/source/atom.haml b/source/atom.haml index d8cfe040..67038c11 100644 --- a/source/atom.haml +++ b/source/atom.haml @@ -1,16 +1,20 @@ --- layout: nil +address: http://yoursite.com +email: author@domain.com +name: Your Name +blog_title: My Blog --- <?xml version="1.0" encoding="utf-8"?> %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") + %title= "#{page.name} - #{page.blog_title}" + %link(href="#{page.address}/atom.xml" rel="self") + %link(href="#{page.address}") %updated= Time.now.xmlschema - %id http://yoursite.com/ + %id=page.address %author - %name Your Name - %email user[at]domain.com + %name= page.name + %email= page.email - site.posts[0..14].each do |post| %entry %title= rp(post.title) |