Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #161 from opdemand/add-500-template
Browse files Browse the repository at this point in the history
Add 500.html template to API application
  • Loading branch information
mboersma committed Sep 4, 2013
2 parents 5a9d092 + 1e0cbe6 commit 616fe18
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions api/static/500.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>

<head>
<title>Deis Error</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="keywords" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" href="/static/css/bootstrap.css" media="screen" type="text/css">
<link rel="stylesheet" href="/static/css/bootstrap-responsive.css" type="text/css">
<link rel="stylesheet" href="/static/css/main.css" type="text/css">
<link rel="shortcut icon" href="/static/favicon.ico">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"><\/script>')</script>
<meta name='robots' content='noindex,nofollow' />
</head>
<body style="zoom: 1;">
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->

<div class="container">
<div class="row">
<h1>Internal Server Error</h1>
<p>See /var/log/deis for details</p>
</div> <!-- .row -->
</div> <!-- .main_section container-->

</body>

</html>

0 comments on commit 616fe18

Please sign in to comment.