apostrophe
Version:
The Apostrophe Content Management System.
34 lines (32 loc) • 896 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 lib/modules/apostrophe-templates/views #}
{# in your project folder. #}
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>{{ __ns('apostrophe', "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>{{ __ns('apostrophe', 'An error has occurred') }}</h1>
<p>{{ __ns('apostrophe', "An error has occurred. We're working on it. We apologize for the inconvenience.") }}</p>
</main>
</body>
</html>