-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
39 lines (34 loc) · 1.31 KB
/
error.php
File metadata and controls
39 lines (34 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>404 Error - Page Not Found</title>
<link rel="stylesheet" href="css/reset.css" type="text/css" />
<link rel="stylesheet" href="css/text.css" type="text/css" />
<link rel="stylesheet" href="css/960.css" type="text/css" />
<link rel="stylesheet" href="css/styles.css" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!--[if lt IE 8]><link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection" /><![endif]-->
</head>
<body>
<div id="container" class="container_12">
<div id="header" class="grid_12">
<div id='masthead'>
<?php include("includes/masthead.php") ?>
</div>
</div>
<div id="cssmenu" class="grid_12">
<?php include("includes/menu.php") ?>
</div>
<div id="errorContent" class="grid_12">
<p>
<img src="images/brownstones.gif" alt="Page Not Found" width="950px"/>
</p>
</div>
<div id="footer" class="grid_12">
<?php include("includes/footer.php") ?>
</div>
</div>
</body>
</html>