I\'m working in a website where part of it I have the static html, so I created a layout and in it I\'m inserting the static content using views. My problem is as this websi
By using $this->view->pick('page/about'); you are overwriting the layout set by $this->view->setLayout( 'website' );, resulting in only seeing the page/about layout.