diff options
Diffstat (limited to 'public/500.html')
| -rw-r--r-- | public/500.html | 91 | 
1 files changed, 30 insertions, 61 deletions
| diff --git a/public/500.html b/public/500.html index 061abc5..4364df4 100644 --- a/public/500.html +++ b/public/500.html @@ -1,66 +1,35 @@  <!DOCTYPE html> -<html> -<head> -  <title>We're sorry, but something went wrong (500)</title> -  <meta name="viewport" content="width=device-width,initial-scale=1"> -  <style> -  body { -    background-color: #EFEFEF; -    color: #2E2F30; -    text-align: center; -    font-family: arial, sans-serif; -    margin: 0; -  } +<html lang="en-us"> +  <head> +    <title>downloads.jesterpm.net</title> +    <meta charset="utf-8"> +    <meta http-equiv="X-UA-Compatible" content="IE=edge"> +    <meta name="viewport" content="width=device-width, initial-scale=1"> +    <link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"> +    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> +    <link rel="stylesheet" href="styles.css"> +    <script> +        var _gaq = _gaq || []; +        _gaq.push(['_setAccount', 'UA-23877924-1']); +        _gaq.push(['_trackPageview']); -  div.dialog { -    width: 95%; -    max-width: 33em; -    margin: 4em auto 0; -  } +        (function() { +        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; +        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; +        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); +        })(); +    </script> +  </head> +  <body> +    <header class="small" title=""> +      <h1>downloads.jesterpm.net</h1> +    </header> -  div.dialog > div { -    border: 1px solid #CCC; -    border-right-color: #999; -    border-left-color: #999; -    border-bottom-color: #BBB; -    border-top: #B00100 solid 4px; -    border-top-left-radius: 9px; -    border-top-right-radius: 9px; -    background-color: white; -    padding: 7px 12% 0; -    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17); -  } +    <h2>Oops...</h2> +    Something went wrong. Please <a href="http://jesterpm.net/#summary">contact me</a>. -  h1 { -    font-size: 100%; -    color: #730E15; -    line-height: 1.5em; -  } - -  div.dialog > p { -    margin: 0 0 1em; -    padding: 1em; -    background-color: #F7F7F7; -    border: 1px solid #CCC; -    border-right-color: #999; -    border-left-color: #999; -    border-bottom-color: #999; -    border-bottom-left-radius: 4px; -    border-bottom-right-radius: 4px; -    border-top-color: #DADADA; -    color: #666; -    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17); -  } -  </style> -</head> - -<body> -  <!-- This file lives in public/500.html --> -  <div class="dialog"> -    <div> -      <h1>We're sorry, but something went wrong.</h1> -    </div> -    <p>If you are the application owner check the logs for more information.</p> -  </div> -</body> +    <footer> +        Copyright © 2008-2015 <a href="http://jesterpm.net/index.html#summary">Jesse Morgan</a> +    </footer> +  </body>  </html> | 
