From 8990906466354749a70691b84a315c0272a4a9be Mon Sep 17 00:00:00 2001 From: B Mathis Date: Wed, 11 Nov 2009 19:49:17 -0600 Subject: [PATCH] fixed haml breaking source code indentation --- source/_layouts/default.haml | 4 ++-- source/index.haml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_layouts/default.haml b/source/_layouts/default.haml index 412979e..cfde533 100644 --- a/source/_layouts/default.haml +++ b/source/_layouts/default.haml @@ -60,7 +60,7 @@ google_analytics: true #main - if page.respond_to? :date %h2= page.title - = content + = preserve rp(content) %p.pubdate Published: =page.date.strftime("%d %b, %Y") @@ -73,7 +73,7 @@ google_analytics: true %a(href="http://designenthusiast.disqus.com/?url=ref") View the discussion thread %script(type="text/javascript" src="http://disqus.com/forums/#{page.disqus_short_name}/embed.js") - else - = content + = preserve rp(content) #sidebar - if page.respond_to? :twitter_user %h4 Twitter @#{page.twitter_user} diff --git a/source/index.haml b/source/index.haml index f781d4e..796b81b 100644 --- a/source/index.haml +++ b/source/index.haml @@ -6,7 +6,7 @@ title: Blog - site.posts.sort_by(&:date).reverse[0..9].each_with_index do |post,index| .article %h2= link_to(post.title, post.url, {:class=>"title"}) - = post.content + = preserve rp(post.content) - if page.respond_to? :disqus_short_name .footer - if post.data["comments_off"]