If I have one <%= yield %> tag then all my views render in the same place in the layout. Can I have different <%= yield %> tags for different views? Is so how do I do this? Thanks
|
|
|||
|
|
Look into ActionView::Helpers::CaptureHelper. You can do something like this in your views:
This will run the template inside the content_for block, but will not output as part of the regular template
So in a sense you can have different Consider your case, where you want different views in different places. Let's say you have three panels, panel1, panel2, and panel3. You can do this in your layout:
You don't even need to include a plain
To show in panel 2. Another one might be intended for panel 3, like this:
|
||||
|
|
|
Yes, you can have multiple
Then use the
|
|||
|
|
|
You can use yield and content for:
|
|||
|
|