Files
nl-admin-api/modules/application/views/error/exception.php

102 lines
1.9 KiB
PHP
Raw Normal View History

2011-06-08 23:45:08 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2011-07-11 08:39:20 -07:00
<title>Laravel - <?php echo $severity; ?></title>
<link href="http://fonts.googleapis.com/css?family=Quattrocento&amp;v1" rel="stylesheet" type="text/css" media="all" />
<link href="http://fonts.googleapis.com/css?family=Ubuntu&amp;v1" rel="stylesheet" type="text/css" media="all" />
<link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
2011-06-08 23:45:08 -05:00
<style type="text/css">
body {
2011-07-11 08:39:20 -07:00
background-color: #eee;
color: #6d6d6d;
font-family: 'Ubuntu';
font-size: 15px;
2011-06-08 23:45:08 -05:00
}
2011-07-11 08:39:20 -07:00
h1.laravel {
font-family: 'Lobster Two', Helvetica, serif;
font-size: 60px;
margin: 0 0 15px -10px;
padding: 0;
text-shadow: -1px 1px 1px #fff;
2011-06-08 23:45:08 -05:00
}
2011-07-11 08:39:20 -07:00
h2 {
font-family: 'Quattrocento', serif;
font-size: 30px;
margin: 30px 0 0 0;
padding: 0;
text-shadow: -1px 1px 1px #fff;
}
p {
margin: 10px 0 0 0;
line-height: 25px;
2011-06-08 23:45:08 -05:00
}
pre {
2011-07-11 08:39:20 -07:00
font-size: 12px;
2011-06-08 23:45:08 -05:00
}
2011-07-11 08:39:20 -07:00
pre.context {
margin: 0; padding: 0;
2011-06-08 23:45:08 -05:00
}
2011-07-11 08:39:20 -07:00
2011-07-11 08:40:11 -07:00
pre.highlight {
2011-07-11 08:39:20 -07:00
font-weight: bold;
color: #990000;
}
2011-07-11 09:18:59 -07:00
#header {
margin: 0 auto;
margin-bottom: 15px;
margin-top: 20px;
width: 80%;
}
2011-07-11 08:39:20 -07:00
#wrapper {
background-color: #fff;
2011-06-08 23:45:08 -05:00
border-radius: 10px;
2011-07-11 08:39:20 -07:00
margin: 0 auto;
padding: 10px;
width: 80%;
}
#wrapper h2:first-of-type {
margin-top: 0;
}
2011-06-08 23:45:08 -05:00
</style>
</head>
<body>
2011-07-11 08:39:20 -07:00
<div id="header">
<h1 class="laravel"><?php echo $severity; ?></h1>
</div>
2011-06-08 23:45:08 -05:00
<div id="wrapper">
2011-07-11 08:39:20 -07:00
<h2>Message:</h2>
<p><?php echo $message; ?></p>
2011-07-11 08:39:20 -07:00
<h2>Stack Trace:</h2>
<pre><?php echo $trace; ?></pre>
<h2>Snapshot:</h2>
<p>
<?php if (count($contexts) > 0): ?>
2011-06-08 23:45:08 -05:00
2011-07-11 08:39:20 -07:00
<?php foreach($contexts as $num => $context): ?>
2011-07-11 08:40:11 -07:00
<pre class="context <?php echo ($line == $num) ? 'highlight' : ''; ?>"><?php echo htmlentities($num.': '.$context); ?></pre>
2011-07-11 08:39:20 -07:00
<?php endforeach; ?>
2011-06-08 23:45:08 -05:00
2011-07-11 08:39:20 -07:00
<?php else: ?>
Snapshot Unavailable.
<?php endif; ?>
</p>
2011-06-08 23:45:08 -05:00
</div>
</body>
</html>