mirror of
https://github.com/filp/whoops.git
synced 2026-09-12 02:36:20 +00:00
Add skeleton for PrettyPage handler template
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* Template file for DamnIt's pretty error output.
|
||||
* Check the $v global variable (stdClass) for what's available
|
||||
* to work with.
|
||||
* @var $v
|
||||
*/
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Damn it! - An error ocurred.</title>
|
||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/2.1.0/normalize.css">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>There was an error</h1>
|
||||
<p>
|
||||
But it's gone now.
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user