view piecrust/resources/messages/critical.html @ 137:67a1c082d89d

Fixed outdate information in error messages' footer.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 29 Nov 2014 15:31:26 -0800
parents c77062233ba5
children a951cd4ef361
line wrap: on
line source

<!doctype html>
<html>
<head>
    <title>The Whole Kitchen Burned Down!</title>
    <meta name="generator" content="PieCrust" />
	<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lobster">
	<style>
		body {
			margin: 0;
			padding: 1em;
			background: #eee;
			color: #000;
			font-family: Georgia, serif;
		}
		h1 {
			font-size: 4.5em;
			font-family: Lobster, 'Trebuchet MS', Verdana, sans-serif;
			text-align: center;
			font-weight: bold;
            margin-top: 0;
			color: #333;
			text-shadow: 0px 2px 5px rgba(0,0,0,0.3);
		}
		h2 {
			font-size: 2.5em;
            font-family: 'Lobster', 'Trebuchet MS', Verdana, sans-serif;
		}
		code {
			background: #ddd;
			padding: 0 0.2em;
		}
        #preamble {
            font-size: 1.2em;
            font-style: italic;
            text-align: center;
            margin-bottom: 0;
        }
		#container {
			margin: 0 20%;
		}
        #content {
            margin: 2em 1em;
        }
        .error-details {
            color: #d11;
        }
		.note {
			margin: 3em;
			color: #888;
			font-style: italic;
		}
	</style>
</head>
<body>
    <div id="container">
        <div id="header">
            <p id="preamble">A Message From The Kitchen:</p>
			<h1>The Whole Kitchen Burned Down!</h1>
		</div>
        <hr />
        <div id="content">
            <p>Something critically bad happened, and <strong>PieCrust</strong> needs to shut down. It&#8217;s probably our fault.</p>


{% if details %}
<div class="error-details">
    {{ details|safe }}
</div>
{% endif %}
		</div>
        <hr />
        	<p class="note">You&#8217;re seeing this because something wrong happend. To see detailed errors with callstacks, run chef with the <code>--debug</code> parameter, append <code>?!debug</code> to the <span class="caps">URL</span>, or initialize the <code>PieCrust</code> object with <code>{'debug': true}</code>. On the other hand, to see you custom error pages, set the <code>site/display_errors</code> setting  to <code>false</code>.</p>	</div>
</body>
</html>