poll.horse/frontend/errors/500.html
Wolvan 8c3001042b Build frontend loader system
A custom server-side renderer is used to deliver pages to the client
with values defined on load. This makes templating easier.
2021-12-28 23:49:18 +01:00

15 lines
513 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ TITLE }}</title>
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<h1>Oops! Something went wrong</h1>
<h2>Server Error {{ HTTP_ERROR_CODE }}</h2>
<p>An error occured while processing your request. Please send the following code to the {{ DEVELOPER_CONTACT_INFO }}:</p>
<code>{{ JS_ERROR_STACK }}</code>
</body>
</html>