-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
36 lines (22 loc) · 1 KB
/
404.php
File metadata and controls
36 lines (22 loc) · 1 KB
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
if ( ! defined( 'ABSPATH' ) ) exit;
get_header();
?>
<div id="content">
<div class="col-full">
<?php woo_main_before(); ?>
<section id="main" class="col-left">
<div class="page">
<header>
<h1><?php _e( 'Error 404 - Page not found!', 'woothemes' ); ?></h1>
</header>
<section class="entry">
<p><?php _e( 'The page you trying to reach does not exist, or has been moved. Please use the menus or the search box to find what you are looking for.', 'woothemes' ); ?></p>
</section>
</div><!-- /.post -->
</section><!-- /#main -->
<?php woo_main_after(); ?>
<?php get_sidebar(); ?>
</div><!-- /.col-full -->
</div><!-- /#content -->
<?php get_footer(); ?>