public function indexAction()
 {
     $fc = FrontController::getInstance();
     $model = new PageModel();
     header('HTTP/1.0 Not Found');
     $fc->setBody($model->render('404.php', TEMPLATE));
 }
 public function indexAction()
 {
     $fc = FrontController::getInstance();
     $model = new PageModel();
     $fc->setBody($model->render('main.php', TEMPLATE));
 }