From 33bca7246e9f5c3b61712e44665386821acdf4b6 Mon Sep 17 00:00:00 2001 From: B Mathis Date: Wed, 10 Mar 2010 12:26:47 -0600 Subject: [PATCH] added support for "updated" metadata in a blog post --- source/index.haml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/index.haml b/source/index.haml index 7ccaabc..b90b720 100644 --- a/source/index.haml +++ b/source/index.haml @@ -10,7 +10,8 @@ disqus: %h2= link_to(post.title, post.url, {:class=>"title"}) .meta - author = (page.respond_to?(:author) && page.author) ? 'by: ' + page.author + ' |' : '' - #{author} posted: #{post.date.strftime("%B #{post.date.day.ordinalize}, %Y")} + #{author} posted: #{post.date.strftime("%B #{post.date.day.ordinalize}, %Y")} + = (page.respond_to?(:updated) && page.updated) ? " | upated: #{page.updated}" : '' = preserve rp(post.content) - if page.respond_to?(:disqus) && page.disqus - if post.data["comments_off"]