-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a 455 error page to the site. Currently, nobody actually gets s…
…ent there, but we're watching you. We know you're a jerk. We're just waiting…
- Loading branch information
Remy Porter
committed
Jan 17, 2015
1 parent
85eeffa
commit 28fb7c2
Showing
2 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| <% Response.StatusCode = 404 %> | ||
|
|
||
| <!DOCTYPE html> | ||
| <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| <head> | ||
| <title>404 - Not Found</title> | ||
| <meta charset="utf-8" /> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
| <link rel="icon" href="/favicon.ico" /> | ||
| <link rel="stylesheet" href="/content/css/gumby.css" /> | ||
| <link rel="stylesheet" href="/content/css/custom.css" /> | ||
| </head> | ||
| <body> | ||
| <div class="navcontain"> | ||
| <div class="navbar dailywtf" id="nav3"> | ||
| <div class="row"> | ||
| <div class="three columns"> | ||
| <a href="/"> | ||
| <img src="/content/images/wtf-logo.png" style="padding-top:15px;" /> | ||
| </a> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div id="wrapper"> | ||
| <div class="row"> | ||
| <div class="twelve columns"> | ||
| <h1>455 - User is a Jackass</h1> | ||
| <p> | ||
| We don't want to fulfill this request because you're a 455hole. | ||
| </p> | ||
| <p> | ||
| <a href="/">« Return to Home Page</a> | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="container"> | ||
| <footer> | ||
| <div class="row horizontal"> | ||
| <hr /> | ||
| </div> | ||
| <div class="row"> | ||
| <p> | ||
| Copyright © 2004 - 2014 Inedo Publishing | ||
| </p> | ||
| </div> | ||
| </footer> | ||
| </div> | ||
| </body> | ||
| </html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| <!DOCTYPE html> | ||
| <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| <head> | ||
| <title>404 - Not Found</title> | ||
| <meta charset="utf-8" /> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
| <link rel="icon" href="/favicon.ico" /> | ||
| <link rel="stylesheet" href="/content/css/gumby.css" /> | ||
| <link rel="stylesheet" href="/content/css/custom.css" /> | ||
| </head> | ||
| <body> | ||
| <div class="navcontain"> | ||
| <div class="navbar dailywtf" id="nav3"> | ||
| <div class="row"> | ||
| <div class="three columns"> | ||
| <a href="/"> | ||
| <img src="/content/images/wtf-logo.png" style="padding-top:15px;" /> | ||
| </a> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div id="wrapper"> | ||
| <div class="row"> | ||
| <div class="twelve columns"> | ||
| <h1>455 - User is a Jackass</h1> | ||
| <p> | ||
| We don't want to fulfill this request because you're a 455hole. | ||
| </p> | ||
| <p> | ||
| <a href="/">« Return to Home Page</a> | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="container"> | ||
| <footer> | ||
| <div class="row horizontal"> | ||
| <hr /> | ||
| </div> | ||
| <div class="row"> | ||
| <p> | ||
| Copyright © 2004 - 2014 Alex Papadimoulis - v1.0 | ||
| </p> | ||
| </div> | ||
| </footer> | ||
| </div> | ||
| </body> | ||
| </html> |