Files
fnx_web/res/template/500.html

32 lines
841 B
HTML
Raw Normal View History

2018-07-09 21:41:17 +02:00
{{define "500"}}<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2018-07-09 21:41:17 +02:00
<head>
{{template "meta_tags" "500, Internal Server Error"}}
2018-07-09 21:41:17 +02:00
</head>
<body>
2019-09-17 23:38:40 +02:00
{{template "page_top" .}}
2022-01-11 13:28:22 +01:00
<header>
2022-01-03 14:02:50 +01:00
<h1>You broke pixeldrain</h1>
2022-01-11 13:28:22 +01:00
</header>
<section>
<p>
Great job.
</p>
<p>
Just kidding, something went wrong on the pixeldrain server and
2020-07-20 23:27:45 +02:00
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>
2022-01-11 13:28:22 +01:00
</section>
2019-09-17 23:38:40 +02:00
{{template "page_bottom" .}}
2018-07-09 21:41:17 +02:00
{{template "analytics"}}
</body>
</html>
{{end}}