Skip to content

Instantly share code, notes, and snippets.

@RSO
Created June 21, 2014 07:11
Show Gist options
  • Save RSO/7cab7a97af0388f12493 to your computer and use it in GitHub Desktop.
Save RSO/7cab7a97af0388f12493 to your computer and use it in GitHub Desktop.
<% content_for :base_content do %>
<h1>Application</h1>
<%= yield %>
<% end %>
<html>
<head>
<meta name="example">
</head>
<%= body_tag do %>
<%= yield :base_content %>
<% end %>
</html>
<% content_for :base_content do %>
<h1>Way different layout</h1>
<p>Except for the head and body tags of course</p>
<%= yield %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment