$messages=array("We're lost.","This doesn't look familiar.","We need a map.");
$message=$messages[mt_rand(0,2)];
?>
<h1class="laravel"><?phpecho$message;?></h1>
</div>
</head>
<body>
<divid="main">
<?php$messages=array('We need a map.','I think we\'re lost.','We took a wrong turn.');?>
<divid="wrapper">
<?php
$apologies=array("This is embarrassing.","Don't give up on us.","We're really sorry.");
$apology=$apologies[mt_rand(0,2)];
?>
<h1><?phpecho$messages[mt_rand(0,2)];?></h1>
<h2><?phpecho$apology;?></h2>
<p>We're really sorry, but we couldn't find the resource you requested.</p>
<p>We couldn't find the resource you requested. Would you like go to our <ahref="<?phpechoConfig::get('application.url');?>">home page</a> instead?</p>
<p>Perhaps you would like to go to our <?phpechoHTML::link('/','home page');?> instead?</p>
<?php$messages=array('Something bad has happened.','We messed up.','Whoops!');?>
<divid="wrapper">
<?php
$apologies=array("It's not your fault.","Don't give up on us.","We're really sorry.");
$apology=$apologies[mt_rand(0,2)];
?>
<h1><?phpecho$messages[mt_rand(0,2)];?></h1>
<h2><?phpecho$apology;?></h2>
<p>We're really sorry, but something went wrong while we were processing your request.</p>
<p>Something failed while we were handling your request. Would you like go to our <ahref="<?phpechoConfig::get('application.url');?>">home page</a> instead?</p>
<p>Perhaps you would like to go to our <?phpechoHTML::link('/','home page');?> instead?</p>