public function index(){
// page data
$data['page_title'] = 'Directories';
// load template and output
$this->load->view('template/assets/box',array('boxtitle'=>'foo','content'=>'bar'));
$this->load->view('template/assets/box',array('content'=>'blah'));
$this->load->view('template/assets/box',array());
#$this->Template_model->view('directories/index',$data);
}
/*
* Extract and cache variables
*
* You can either set variables using the dedicated $this->load->vars()
* function or via the second parameter of this function. We'll merge
* the two types and cache them so that views that are embedded within
* other views can have access to these variables.
*/