Contact page

The ContactController is bound to the @uri('/(contact)'), but does nothing but kicks of an greeting alert in its constructor.

@uri('/(contact)/')
class ContactController implements IJSController {
	public function new() {
		Lib.alert('The ContactController says Hello world!');
	}
}