Files
fnx_web/res/template/500.html

33 lines
873 B
HTML

{{define "500"}}<!DOCTYPE html>
<html lang="en">
<head>
{{template "meta_tags" "500, Internal Server Error"}}
</head>
<body>
{{template "page_top" .}}
<header>
<h1>You broke Nova</h1>
</header>
<div id="page_content" class="page_content">
<section>
<p>
Great job.
</p>
<p>
Just kidding, something went wrong on the Nova server and
it's my fault. This can happen when the website is overloaded,
there is a problem with the software or there is a hardware
problem. When there is a large scale outage you can usually find
more info on my twitter <a
href="https://twitter.com/Fornax96"></a>@Fornax96</a>. You can
try again in a few minutes (or hours), or go back to the <a
href='/'>home page</a> and start over.
</p>
</section>
</div>
{{template "page_bottom" .}}
</body>
</html>
{{end}}