Files
fnx_web/res/template/500.html
2022-01-03 14:02:50 +01:00

33 lines
900 B
HTML

{{define "500"}}<!DOCTYPE html>
<html lang="en">
<head>
{{template "meta_tags" "500, Internal Server Error"}}
{{template "user_style" .}}
</head>
<body>
{{template "page_top" .}}
<div class="checkers inset">
<h1>You broke pixeldrain</h1>
</div>
<div class="limit_width">
<p>
Great job.
</p>
<p>
Just kidding, something went wrong on the pixeldrain 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>
</div>
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}