Created
March 13, 2013 01:25
-
-
Save joekur/5148659 to your computer and use it in GitHub Desktop.
Rails nested 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
<div id="admin_menu></div> | |
<% content_for :body do %> | |
<%= yield %> | |
<% end %> | |
<%= render :file => 'layouts/application' %> |
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
<body> | |
<%= yield :body %> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment