mirror of
https://github.com/Wolvan/poll.horse.git
synced 2024-11-21 20:47:59 +01:00
8c3001042b
A custom server-side renderer is used to deliver pages to the client with values defined on load. This makes templating easier.
15 lines
513 B
HTML
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>
|