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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
<?php
# -- BEGIN LICENSE BLOCK ---------------------------------------
#
# This file is part of Dotclear 2.
#
# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
# Licensed under the GPL version 2.0 license.
# See LICENSE file or
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK -----------------------------------------
header('Content-Type: text/html; charset=utf-8');
header("HTTP/1.0 ".$code." ".$summary);
?>
<!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" />
<meta http-equiv="Content-Language" content="en" />
<meta name="ROBOTS" content="NOARCHIVE,NOINDEX,NOFOLLOW" />
<meta name="GOOGLEBOT" content="NOSNIPPET" />
<title>Dotclear - Error</title>
<style media="screen" type="text/css">
<!--
body {
font: 62.5%/1.5em "DejaVu Sans","Lucida Grande","Lucida Sans Unicode",Arial,sans-serif;
color : #000;
background : #E5E3DA;
margin : 0;
padding : 0;
}
#content {
margin: 0 25%;
padding: 1px 1em 2em;
background: #fff;
font-size: 1.2em;
}
a, a:link, a:visited {
color : #2373A8;
text-decoration : none;
border-bottom : 1px dotted #f90;
}
h1 {
color: #2373A8;
font-size: 2.5em;
font-weight: normal;
}
h2 {
font-size: 1.5em;
}
-->
</style>
</head>
<body>
<div id="content">
<h1>Dotclear</h1>
<h2><?php echo $summary; ?></h2>
<?php echo $message; ?></div>
</body>
</html>
|