47 lines
802 B
HTML
47 lines
802 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>We're sorry, but something went wrong (500)</title>
|
|
<style type="text/css">
|
|
body {
|
|
text-align: center;
|
|
background-color: rgb(252,252,252);
|
|
color: #444;
|
|
font-family: 'helvetica neue', 'helvetica', 'arial', sans-serif;
|
|
margin: 0;
|
|
padding: 1em;
|
|
}
|
|
|
|
header {
|
|
height: 100px;
|
|
background-color: #333;
|
|
position:relative;
|
|
}
|
|
|
|
#diaspora_logo {
|
|
position: relative;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 100%;
|
|
color: #444;
|
|
line-height: 1.5em;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- This file lives in public/500.html -->
|
|
<header>
|
|
<img id="diaspora_logo" src="/assets/branding/logo_large.png"/>
|
|
</header>
|
|
|
|
<h1>
|
|
500: Internal server error.
|
|
</h1>
|
|
<h3>
|
|
Our bad! Sorry about that. :(
|
|
</h3>
|
|
</body>
|
|
</html>
|