aboutsummaryrefslogtreecommitdiff
path: root/data/templates/default/error.404.tpl.php
blob: fe9401d754bf6775507b9a9090eeff1b2244bc88 (plain)
1
2
3
4
5
6
7
8
9
<?php
header('HTTP/1.x 404 Not Found');
$this->includeTemplate($GLOBALS['top_include']);
if (!$error) {
    echo '<h1>'. T_('Not Found') .'</h1>';
    echo '<p>'. T_('The requested URL was not found on this server') .'</p>';
}
$this->includeTemplate($GLOBALS['bottom_include']);
?>