Inheritance: extends Kostache_Layout
 public function action_index()
 {
     $download = Kohana::$config->load('files');
     $view = new View_Download_Index();
     $view->set('download', $download)->set('title', 'Download Kohana');
     $this->response->body($view);
 }
 public function action_index()
 {
     $view = new View_Download_Index();
     $view->set('title', 'Download Kohana');
     $this->response->body($view);
 }