14 lines
257 B
PHP
14 lines
257 B
PHP
<?
|
|
include("menu.en.inc");
|
|
$this->title = "Page not found";
|
|
$this->addStylesheet('text');
|
|
$this->startContents();
|
|
?>
|
|
<h1>Page not found</h1>
|
|
<p>
|
|
The page you requested could not be found on this server.
|
|
</p>
|
|
<p>
|
|
Sorry :-\
|
|
</p>
|
|
<? $this->endContents(); ?>
|