diff options
Diffstat (limited to 'source/_layouts')
-rw-r--r-- | source/_layouts/blog_post.haml | 4 | ||||
-rw-r--r-- | source/_layouts/default.haml | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/source/_layouts/blog_post.haml b/source/_layouts/blog_post.haml index 112df953..8201632e 100644 --- a/source/_layouts/blog_post.haml +++ b/source/_layouts/blog_post.haml @@ -25,8 +25,8 @@ google_analytics_tracking_id: #header= include "header.haml" #nav= include "navigation.haml" #page - .page_width + #content #main - .blog= include "post.haml" + .blog.content= include "post.haml" #sidebar= include "sidebar.haml" = include "footer.haml"
\ No newline at end of file diff --git a/source/_layouts/default.haml b/source/_layouts/default.haml index ef41e254..9f4468b7 100644 --- a/source/_layouts/default.haml +++ b/source/_layouts/default.haml @@ -25,7 +25,8 @@ google_analytics_tracking_id: #header= include "header.haml" #nav= include "navigation.haml" #page - .page_width - #main= preserve rp(content) + #content + #main + .content= preserve rp(content) #sidebar= include "sidebar.haml" = include "footer.haml"
\ No newline at end of file |