Is it possible to have one layout extend another one?
For example:
normal.rhtml:
<%= @content_for_layout %>extra_stuff.rhtml somehow extends normal.rhtml:
<%= @content_for_layout %>
So any page that uses extra_stuff as its layout looks like this:
<%= @content_for_layout %>Is this possible to do? It would be really handy. Thanks in advance
for
the help!