dnote/web/static/500.html
2019-05-10 09:31:31 +10:00

43 lines
805 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Server Error | Dnote</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400' rel='stylesheet' type='text/css' />
<style type="text/css">
body {
font-family: 'Lato', sans-serif;
margin: 0;
}
main {
text-align: center;
padding: 8em 0.5em;
}
.logo {
width: 207px;
}
.contact-list {
list-style: none;
padding-left: 0;
}
.contact-list li {
display: inline-block;
padding: 0 0.7em;
}
</style>
</head>
<body>
<main>
<h1>Looks like something went wrong!</h1>
<p>
An error happened on the server.
</p>
</main>
</body>
</html>