-
Notifications
You must be signed in to change notification settings - Fork 39
/
404.php
61 lines (45 loc) · 1.39 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* The template for displaying 404 pages (Not Found)
*
* @package Scaffolding
*/
get_header();
?>
<div id="inner-content" class="container">
<div id="main" class="clearfix" role="main">
<section class="error-404 not-found clearfix">
<header class="page-header">
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'scaffolding' ); ?></h1>
</header>
<div class="page-content">
<p><?php esc_html_e( 'It looks like nothing was found at this location. This may be due to the page being moved, renamed or deleted.', 'scaffolding' ); ?></p>
<ul>
<li><?php esc_html_e( 'Check the URL in the address bar above;', 'scaffolding' ); ?></li>
<li>
<?php
printf(
wp_kses(
/* translators: 1: Site Map URL, 2: Site Map name */
__( 'Look for the page in the main navigation above or on the <a href="%1$s">%2$s</a> page;', 'scaffolding' ),
array(
'a' => array(
'href' => array(),
'class' => array(),
),
)
),
esc_url( home_url( '/site-map/' ) ),
esc_html( 'Site Map' )
);
?>
</li>
<li><?php esc_html_e( 'Or try using the Search below.', 'scaffolding' ); ?></li>
</ul>
<?php get_search_form(); ?>
</div>
</section>
</div><?php // END #main. ?>
</div><?php // END #inner-content. ?>
<?php
get_footer();