-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
30 lines (24 loc) · 800 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* The template for displaying 404 pages (Not Found)
*
* Please see /assets/includes/starkers-utilities.php for info on Starkers_Utilities::get_template_parts()
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 4.0
*/
?>
<?php Starkers_Utilities::get_template_parts( array( 'header' ) ); ?>
<div class="container">
<h1>Page not found</h1>
<h2>Well this is somewhat embarrassing, isn't it?</h2>
<p>Sorry, but the page you were trying to view does not exist.</p>
<p>It looks like this was the result of either:</p>
<ul>
<li>a mistyped address</li>
<li>an out-of-date link</li>
</ul>
<p>If you think there should be a page here, please get in touch , thanks!</p>
</div>
<?php Starkers_Utilities::get_template_parts( array( 'footer' ) ); ?>