diff options
| author | Jesse Morgan <jesse@jesterpm.net> | 2015-04-04 14:59:59 -0700 | 
|---|---|---|
| committer | Jesse Morgan <jesse@jesterpm.net> | 2015-04-04 15:02:51 -0700 | 
| commit | 59218aaef6041b3467996908c70fa50d3a5e49fe (patch) | |
| tree | ea171cd5ca28dbacf3827d06f5b5dac41b8159ef /public/422.html | |
| parent | a0d0803d7145685548e505ab7131895cf501d5cf (diff) | |
Adding styles and landing page.
Diffstat (limited to 'public/422.html')
| -rw-r--r-- | public/422.html | 92 | 
1 files changed, 30 insertions, 62 deletions
| diff --git a/public/422.html b/public/422.html index a21f82b..5633181 100644 --- a/public/422.html +++ b/public/422.html @@ -1,67 +1,35 @@  <!DOCTYPE html> -<html> -<head> -  <title>The change you wanted was rejected (422)</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>Does Not Compute</h2> +    Please go to <a href="http://jesterpm.net">http://jesterpm.net</a> instead. -  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/422.html --> -  <div class="dialog"> -    <div> -      <h1>The change you wanted was rejected.</h1> -      <p>Maybe you tried to change something you didn't have access to.</p> -    </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> | 
