Add skeleton for PrettyPage handler template

This commit is contained in:
filp
2013-03-11 23:21:43 +00:00
parent b61bf22ba1
commit defbe18a42
+26
View File
@@ -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>