Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2010 Aurélien 1
<?php header("HTTP/1.1 404 Not Found"); ?>
2
<html>
3
<head>
4
<title>404 Page Not Found</title>
5
<style type="text/css">
6
7
body {
8
background-color:	#fff;
9
margin:				40px;
10
font-family:		Lucida Grande, Verdana, Sans-serif;
11
font-size:			12px;
12
color:				#000;
13
}
14
15
#content  {
16
border:				#999 1px solid;
17
background-color:	#fff;
18
padding:			20px 20px 12px 20px;
19
}
20
21
h1 {
22
font-weight:		normal;
23
font-size:			14px;
24
color:				#990000;
25
margin: 			0 0 4px 0;
26
}
27
</style>
28
</head>
29
<body>
30
	<div id="content">
31
		<h1><?php echo $heading; ?></h1>
32
		<?php echo $message; ?>
33
	</div>
34
</body>
35
</html>