Home page

Nothing fancy happens here.

There *is* a HomeController bound to @uri('/'), but it does nothing.
It's just here because of demonstration reasons.

@uri('/')  // <-- not needed for index page = '/'
class HomeController implements IJSController {	
	public function new() {
		trace('new HomeController');
	}		
}