forked from lxerxa/actionview
-
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
1 parent
b9b9711
commit 0c4018e
Showing
42 changed files
with
1,007 additions
and
1,357 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 @@ | ||
favicon.* |
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
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
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
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,87 +1,64 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>404 - Not Found</title> | ||
<head> | ||
<meta charset="utf-8"> | ||
|
||
<link href="http://fonts.googleapis.com/css?family=Quattrocento&v1" rel="stylesheet" type="text/css" media="all" /> | ||
<link href="http://fonts.googleapis.com/css?family=Ubuntu&v1" rel="stylesheet" type="text/css" media="all" /> | ||
<link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'> | ||
<title>Error 404 - Not Found</title> | ||
|
||
<style type="text/css"> | ||
body { | ||
background-color: #eee; | ||
color: #6d6d6d; | ||
font-family: 'Ubuntu'; | ||
font-size: 16px; | ||
} | ||
<style> | ||
@import url(http://fonts.googleapis.com/css?family=Ubuntu); | ||
|
||
a { | ||
color: #7089b3; | ||
font-weight: bold; | ||
text-decoration: none; | ||
} | ||
body { | ||
background:#eee; | ||
color: #6d6d6d; | ||
font: normal normal normal 16px/1.253 Ubuntu, sans-serif; | ||
margin:0; | ||
min-width:800px; | ||
padding:0; | ||
} | ||
|
||
h1.laravel { | ||
font-family: 'Lobster Two', Helvetica, serif; | ||
font-size: 60px; | ||
margin: 0 0 15px -10px; | ||
padding: 0; | ||
text-shadow: -1px 1px 1px #fff; | ||
} | ||
#main { | ||
background-clip: padding-box; | ||
background-color: #fff; | ||
border:1px solid #ccc; | ||
border-radius: 5px; | ||
box-shadow: 0 0 10px #cdcdcd; | ||
margin: 50px auto 0; | ||
padding: 30px; | ||
width: 700px; | ||
} | ||
|
||
h2 { | ||
font-family: 'Quattrocento', serif; | ||
font-size: 30px; | ||
margin: 30px 0 0 0; | ||
padding: 0; | ||
text-shadow: -1px 1px 1px #fff; | ||
} | ||
#main h1 { | ||
font-family: 'Ubuntu'; | ||
font-size: 34px; | ||
margin: 0 0 20px 0; | ||
padding: 0; | ||
} | ||
|
||
p { | ||
margin: 10px 0 0 0; | ||
line-height: 25px; | ||
} | ||
#main h2,h3 { | ||
margin-top: 25px; | ||
padding: 0 0 0 0; | ||
} | ||
|
||
#header { | ||
margin: 0 auto; | ||
margin-bottom: 15px; | ||
margin-top: 20px; | ||
width: 80%; | ||
} | ||
#main h3 { | ||
font-size: 18px; | ||
} | ||
|
||
#wrapper { | ||
background-color: #fff; | ||
border-radius: 10px; | ||
margin: 0 auto; | ||
padding: 10px; | ||
width: 80%; | ||
} | ||
#main p { | ||
line-height: 25px; | ||
margin: 10px 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="main"> | ||
<?php $messages = array('We need a map.', 'I think we\'re lost.', 'We took a wrong turn.'); ?> | ||
|
||
#wrapper h2:first-of-type { | ||
margin-top: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="header"> | ||
<?php | ||
$messages = array("We're lost.", "This doesn't look familiar.", "We need a map."); | ||
$message = $messages[mt_rand(0, 2)]; | ||
?> | ||
<h1><?php echo $messages[mt_rand(0, 2)]; ?></h1> | ||
|
||
<h1 class="laravel"><?php echo $message; ?></h1> | ||
</div> | ||
<p>We're really sorry, but we couldn't find the resource you requested.</p> | ||
|
||
<div id="wrapper"> | ||
<?php | ||
$apologies = array("This is embarrassing.", "Don't give up on us.", "We're really sorry."); | ||
$apology = $apologies[mt_rand(0, 2)]; | ||
?> | ||
|
||
<h2><?php echo $apology; ?></h2> | ||
|
||
<p>We couldn't find the resource you requested. Would you like go to our <a href="<?php echo Config::get('application.url'); ?>">home page</a> instead?</p> | ||
</div> | ||
</body> | ||
<p>Perhaps you would like to go to our <?php echo HTML::link('/', 'home page'); ?> instead?</p> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.