apostrophe
Version:
Apostrophe is a user-friendly content management system. You'll need more than this core module. See apostrophenow.org to get started.
32 lines (31 loc) • 768 B
HTML
{# This is rendered if a template rendering error #}
{# occurs. It should be simple to avoid the catch-22 #}
{# of any possible errors here as well, but you may #}
{# override it in your views/global folder. #}
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>An error has occurred</title>
<style type="text/css">
body {
background-color: #ccf;
}
main {
margin: auto;
margin-top: 100px;
width: 600px;
border-radius: 12px;
background-color: #eef;
padding: 20px;
font-family: Helvetica;
}
</style>
</head>
<body>
<main>
<h1>An error has occurred</h1>
<p>An error has occurred. We're working on it. We apologize for the inconvenience.</p>
</main>
</body>
</html>