summaryrefslogtreecommitdiffstats
path: root/application/classes/controller/home.php
blob: 2e353a06f4b937c629e2cf8dc401029c7cf6ba8d (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
class Home_Controller extends Controller {

	public function action_index(){
		$view = View::get('home');
		$view->message = 'Have fun coding!';
		$this->response->body=$view->render();
	}
		
}
?>