I'm having trouble finding a way to do the following:
Let's say in my application.html.erb I have the following
<div id="one" >
<%= yield %>
</div>
Then I want to have another layout file asdf.html.erb
<div id="two">
<%= yield %>
</div>
I want the final output to be
<div id="one">
<div id="two">
<%= yield %>
</div>
</div>
Is it possible? Thanks.