set('NAME', '404 Not Found'); $MainTemplate->set('HEAD', [ 'NAME' => '404 Not Found', 'DESC' => "The requested URL {$_SERVER['REQUEST_URI']} was not found on this server." ]); $MainTemplate->set('HTML', Template\Factory::build('404')); echo $MainTemplate; } #=============================================================================== # CATCH: Template\Exception #=============================================================================== catch(Template\Exception $Exception) { $Exception->defaultHandler(); } ?>