Merge branch 'extended-cookie'
[scuttle] / templates / error.404.tpl.php
1 <?php
2 header('HTTP/1.x 404 Not Found');
3 $this->includeTemplate($GLOBALS['top_include']);
4 if (!$error) {
5     echo '<h1>'. T_('Not Found') .'</h1>';
6     echo '<p>'. T_('The requested URL was not found on this server') .'</p>';
7 }
8 $this->includeTemplate($GLOBALS['bottom_include']);
9 ?>

Benjamin Mako Hill || Want to submit a patch?