Skip to content

Instantly share code, notes, and snippets.

@twinge
Created February 7, 2010 05:32
Show Gist options
  • Save twinge/297236 to your computer and use it in GitHub Desktop.
Save twinge/297236 to your computer and use it in GitHub Desktop.
rails test_app
cd test_app
rails g scaffold person
rails plugin install git://github.com/radar/nested-layouts.git
# application.html.erb
<!DOCTYPE html>
<html>
<head>
<title><%= controller.action_name %></title>
<%= stylesheet_link_tag 'scaffold' %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
</head>
<body>
<p class="notice"><%= notice %></p>
<%= yield %>
</body>
</html>
# people.html.erb
<% inside_layout 'application' do -%>
inside
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment