1 to 2 of 2
If you use application.tpl, you put your whole design in there, and in the middle of the design, where you want the content, you put:
<%= flash %>
{content_for_layout}
Then you can create several of these files inside views/layout/, for example create mylayout.tpl, and change between them with
var $layout = 'mylayout';
In the top of your controller, or change $this->layout inside your action.
1 to 2 of 2