What is the best method to have one single view (I have one html page with different sections () sort of like mini pages on one page) and have different sections call different controllers and actions through that one view?
Because in layouts only one <%= yield %> is acceptable?
What is the best method to have one single view (I have one html
Share
You could consider to use partials, where each partial is allocated to one controller. Within an erb or haml-template, you could call these partials. e.g.: