In a page I'm working on , i have overridden the application.html.erb
because the layout is complex for pages like signup / login and some others.
So i created a new layout and I'm rendering it through the controller's action.
def new
render :layout => '../path/newlayout.html.erb'
...
end
Question is , can i use another layout as a "secondary" application.html.erb
?
Can i <%yield%>
to the newlayout.html.erb
?