Files
fnx_web/res/template/500.html

27 lines
675 B
HTML
Raw Normal View History

2018-07-09 21:41:17 +02:00
{{define "500"}}<!DOCTYPE html>
<html>
<head>
{{template "meta_tags" "500, Internal Server Error"}}
{{template "user_style" .}}
2018-07-09 21:41:17 +02:00
</head>
<body>
2019-09-17 23:38:40 +02:00
<h1>You broke pixeldrain</h1>
{{template "page_top" .}}
<div class="page_content"><div class="limit_width">
<p>
Great job.
</p>
<p>
Just kidding, something went wrong on the pixeldrain server and
it's my fault. I'll soon be notified of the problem and will
take a look at it. You can try again in a few minutes (or
hours), or go back to the <a href='/'>home page</a> and start over.
</p>
2019-09-17 23:38:40 +02:00
</div></div>
{{template "page_bottom" .}}
2018-07-09 21:41:17 +02:00
{{template "analytics"}}
</body>
</html>
{{end}}