2011-06-08 23:45:08 -05:00
<! DOCTYPE html >
< html >
< head >
< meta charset = " utf-8 " >
< title > 404 - Not Found </ title >
2011-07-11 09:08:04 -07:00
< 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 " />
2011-07-28 08:31:29 -05:00
< link href = 'http://fonts.googleapis.com/css?family=Lobster+Two' rel = 'stylesheet' type = 'text/css' >
2011-06-08 23:45:08 -05:00
< style type = " text/css " >
body {
2011-07-11 09:08:04 -07:00
background - color : #eee;
color : #6d6d6d;
font - family : 'Ubuntu' ;
2011-06-08 23:45:08 -05:00
font - size : 16 px ;
}
2011-07-11 09:08:04 -07:00
a {
color : #7089b3;
font - weight : bold ;
text - decoration : none ;
2011-06-08 23:45:08 -05:00
}
2011-07-11 09:08:04 -07:00
h1 . laravel {
font - family : 'Lobster Two' , Helvetica , serif ;
font - size : 60 px ;
margin : 0 0 15 px - 10 px ;
padding : 0 ;
text - shadow : - 1 px 1 px 1 px #fff;
2011-06-08 23:45:08 -05:00
}
2011-07-11 09:08:04 -07:00
h2 {
font - family : 'Quattrocento' , serif ;
font - size : 30 px ;
margin : 30 px 0 0 0 ;
padding : 0 ;
text - shadow : - 1 px 1 px 1 px #fff;
}
p {
margin : 10 px 0 0 0 ;
line - height : 25 px ;
}
#header {
2011-06-08 23:45:08 -05:00
margin : 0 auto ;
2011-07-11 09:08:04 -07:00
margin - bottom : 15 px ;
margin - top : 20 px ;
width : 80 % ;
2011-06-08 23:45:08 -05:00
}
2011-07-11 09:08:04 -07:00
#wrapper {
background - color : #fff;
2011-06-08 23:45:08 -05:00
border - radius : 10 px ;
2011-07-11 09:08:04 -07:00
margin : 0 auto ;
padding : 10 px ;
width : 80 % ;
}
#wrapper h2:first-of-type {
margin - top : 0 ;
2011-06-08 23:45:08 -05:00
}
</ style >
</ head >
< body >
2011-07-11 09:08:04 -07:00
< div id = " header " >
2011-06-08 23:45:08 -05:00
< ? php
2011-07-11 09:08:04 -07:00
$messages = array ( " We're lost. " , " This doesn't look familiar. " , " We need a map. " );
2011-06-08 23:45:08 -05:00
$message = $messages [ mt_rand ( 0 , 2 )];
?>
2011-07-11 09:08:04 -07:00
< h1 class = " laravel " >< ? php echo $message ; ?> </h1>
</ div >
< 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>
2011-06-08 23:45:08 -05:00
2011-08-30 22:09:47 -05:00
< p > We couldn 't find the resource you requested. Would you like go to our <a href="<?php echo Laravel\Config::get(' application . url ' ); ?> ">home page</a> instead?</p>
2011-06-08 23:45:08 -05:00
</ div >
</ body >
</ html >