diff options
author | Leif Johansson <leifj@sunet.se> | 2012-10-09 08:42:27 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2012-10-09 08:42:27 +0200 |
commit | 2051a9fd3d4b3871aa8ff503d208e7f3e938f920 (patch) | |
tree | 73ef5395f2a401830ee7a87447dc553f25dd5f04 /templates/500.html | |
parent | f3b0dbaa669159ec880848f7b70220791a1427fa (diff) |
404 and 500 handlers
Diffstat (limited to 'templates/500.html')
-rw-r--r-- | templates/500.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/500.html b/templates/500.html new file mode 100644 index 0000000..2792a4c --- /dev/null +++ b/templates/500.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html> +<head> + <title>Meeting Tools</title> + <meta http-equiv="content-type" content="text/html;charset=utf-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <link type="text/css" href="{{STATIC_URL}}/bootstrap/css/bootstrap.min.css" rel="stylesheet"/> + <link href="{{theme.base}}/lavish.less" rel="stylesheet/less" type="text/css" /> + <link href="{{STATIC_URL}}/css/style.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div class="container"> + <div class="error-page alert"> + <div class="page-header"><h1>Oh Crap!</h1></div> + <p> + Something just went badly wrong with meetingtools... But don't worry, we're on it! + </p> + </div> + <div class="pull-right error-retry"> + <p>In the meantime you could try to <a href="/">go back and try again...</a></p> + </div> + <div class="clearfix"></div> + <hr/> +</div> +</body>
\ No newline at end of file |