Created
April 11, 2012 06:44
-
-
Save rwz/2357403 to your computer and use it in GitHub Desktop.
nestive layouts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= extends :html5_base do | |
- append :head do | |
meta(http-equiv="X-UA-Compatible" content="IE=edge") | |
title Lolwut | |
= area :assets do | |
= javascript_include_tag 'application' | |
= yield | |
#fb-root | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype html | |
html | |
head= area :head | |
body= yield |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= extends :application do | |
- append :assets do | |
= javascript_include_tag 'some_other_crap' | |
.sidebar | |
= area :sidebar do | |
h3 Here be most popular posts | |
.posts-content | |
h1 Here be posts | |
= yield |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment