template->title = $this->request->post('title'); $stylesheets = array( APPPATH.'assets/stylesheets/base', APPPATH.'assets/stylesheets/colors', APPPATH.'assets/stylesheets/layout', ); $this->template->stylesheet = Less::compile($stylesheets); $scripts = $this->request->post('scripts'); $temp = ""; if (is_array($scripts)) foreach($scripts as $script): $temp .= ''."\n"; endforeach; $this->template->scripts = $temp; } public function action_view(){$this->request->redirect('');} }