Improve the 404 page.

This commit is contained in:
James Brooks
2014-12-31 14:29:20 +00:00
parent 26d51670da
commit 005290ce12
7 changed files with 110 additions and 5 deletions
+11 -4
View File
@@ -1,8 +1,15 @@
@extends('layout.master')
@extends('layout.error')
@section('content')
<div class='jumbotron'>
<h1>This page is missing.</h1>
<p class='lead'>We've no idea.</p>
<div class="middle-box text-center">
<h1>404</h1>
<h3 class="font-bold">Page Not Found</h3>
<div class="error-desc">
<p>Sorry, but the page you are looking for has not been found. Check the URL for errors and try again.</p>
<p>
<a href='/' class='btn btn-default btn-lg'>Home</a>
</p>
</div>
</div>
@stop