-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
36 lines (28 loc) · 870 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
31
32
33
34
35
36
<?php
/**
* The template for displaying 404 pages (Not Found).
**/
get_header();
?>
<div id="wrap">
<div id="left-column">
<?php get_sidebar(); ?>
</div>
<div id="right-column">
<div class="type-post">
<header>
<h2>Woops, an error occurred.</h2>
</header>
<div class="post-text">
<p>Unfortunately the content you are looking for is not here. Sorry about that! Go to
<a href="<?php echo esc_url(home_url('/')); ?>"
title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>"
rel="home">
<?php bloginfo('name'); ?>
</a>.
</p>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>