forked from jchristopher/Franklin-Street-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·36 lines (36 loc) · 1.02 KB
/
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
31
32
33
34
35
36
<?php
/**
* @package Frank
*/
?>
<?php get_header(); ?>
<main id="content" class="fourohfour" role="main">
<div class="row">
<header>
<h1>
<?php _e( 'Page Not Found', 'frank_theme' ); ?>
</h1>
</header>
</div>
<div class="row">
<div id="content-primary">
<div class="six columns">
<p class="large">
<?php
$home_link = sprintf( '<a href="%s" title="%s">%s</a>', home_url(), get_bloginfo( 'name' ), _x( 'home', 'home_link_text', 'frank_theme' ) );
echo sprintf( __( 'Unfortunately, the page you are looking for no longer exists or never existed in the first place. If you reached this page in error, you can go %s and start over.', 'frank_theme' ), $home_link );
?>
</p>
</div>
<div class="six columns search">
<p class="large">
<?php
_e( 'If you believe this page exists, please try searching for the page in the search input below.', 'frank_theme' );
?>
</p>
<?php get_search_form(); ?>
</div>
</div>
</div>
</main>
<?php get_footer(); ?>