-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path404.php
51 lines (37 loc) · 755 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* 404 Page
* by Philip M. Hofer (Frumph)
* http://frumph.net/
*
* Content for the 404 page.
*
* @package Comicpress
*/
get_header();
?>
<div class="post uentry type-page">
<div class="post-content">
<div class="post-info">
<h2 class="page-title">
<?php esc_html_e( 'Page Not Found', 'comicpress' ); ?>
</h2>
</div>
<div class="entry">
<p>
<a href="<?php echo esc_url( site_url() ); ?>">
<?php esc_html_e( 'Click here to return to the home page', 'comicpress' ); ?>
</a>
<?php esc_html_e( 'or try a search:', 'comicpress' ); ?>
</p>
<p>
<?php get_search_form(); ?>
</p>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
</div>
<?php
get_footer();
?>