diff options
Diffstat (limited to '_pages/404.html')
| -rw-r--r-- | _pages/404.html | 15 | 
1 files changed, 8 insertions, 7 deletions
| diff --git a/_pages/404.html b/_pages/404.html index 42aec99..be2e1fb 100644 --- a/_pages/404.html +++ b/_pages/404.html @@ -4,10 +4,11 @@ title: "Error 404"  layout: default  --- -<section class="container centered"> -    <div class="error"> -        <h1>404</h1> -        <h2>Page Not Found</h2> -        <p>Sorry, this page does not exist.<br/>You can head back to <a href="{{ site.baseurl | uri_escape }}">homepage</a>.</p> -    </div> -</section> +<div class="jumbotron text-center"> +  <h1>404: Not Found</h1> +  <p>Sorry, this page does not exist.</p> +  <p> +    <a class="btn btn-lg btn-primary" role="button" href="/">Home page</a> +    <a class="btn btn-lg btn-default" role="button" href="mailto:{{ site.author.email | strip_newlines | strip_html | strip | normalize_whitespace | uri_escape }}">Contact</a> +  </p> +</div> | 
