forked from multiscan/thot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
64 additions
and
2 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
load 'deploy' | ||
# Uncomment if you are using Rails' asset pipeline | ||
load 'deploy/assets' | ||
load 'config/deploy' # remove this line to skip loading any of the default tasks | ||
load 'deploy/assets' |
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,9 @@ | ||
%h2 400 | ||
%div | ||
%h3 Forbidden | ||
%p | ||
Sorry but you don't have valid credentials for accessing the data you are requesting. | ||
%p | ||
Want to | ||
%a{href: root_path} go back to our home page | ||
and try again? |
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,8 @@ | ||
%h2 403 | ||
%h3 We're sorry | ||
%p | ||
The content that you requested could not be found | ||
%p | ||
Want to | ||
%a{href: root_path} go back to our home page | ||
and try again? |
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,10 @@ | ||
%h2 404 | ||
%h3 We're sorry | ||
%p | ||
The content that you requested could not be found. | ||
%p | ||
You tried to access '#{@not_found_path}', which is not a valid page. | ||
%p | ||
Want to | ||
%a{href: root_path} go back to our home page | ||
and try again? |
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,5 @@ | ||
%h2 500 | ||
%h3 OOPS! | ||
%p | ||
An error have occurred. We are going to fix this as soon as possible. Please | ||
try again later. |
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,30 @@ | ||
<html> | ||
<head> | ||
<title>Thot Maintenance</title> | ||
<style> | ||
body { | ||
padding: 20px; | ||
background-color: #ddd; | ||
color: rgb(118, 144, 179); | ||
text-align: center; | ||
line-height: 3em; | ||
font-family: Helvetica, Arial, sans-serif; | ||
text-rendering: optimizelegibility; | ||
text-shadow: rgba(255, 255, 255, 0.898438) 0px 1px 0px; | ||
} | ||
#content { | ||
margin-top: 200px; | ||
} | ||
h1, h2 { | ||
color: #38527c; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="content"> | ||
<h1>Thot</h1> | ||
<h2>is currently down for <%= reason ? reason : "maintenance"%></h2> | ||
<p>We espect to be back <%= deadline ? deadline : "shortly"%>.</p> | ||
</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