summaryrefslogtreecommitdiff
path: root/website/404.php
blob: 8d34528c9e75f87f409c84b314e80762f6d43355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/*
 * Copyright 2005 Matt Brubeck
 * This file is licensed under a Creative Commons license:
 * http://creativecommons.org/licenses/by/2.0/
 */
  require_once "main.inc.php";
  $sitePath = "/.";
  $pageTitle = _("Page Not Found");
  include "include/header.inc.php";
?>

<h2><?=$pageTitle?></h2>
<p><?=_('Sorry, the page you are looking for was not found.  Please try the <a href="/">Oreka home page</a> or the <a href="/site-map">site map</a>.')?></p>

<?php
  include "include/footer.inc.php";
?>