This repository has been archived by the owner on Nov 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy path404.php
62 lines (62 loc) · 2.21 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
62
<?php get_header(); ?>
<div id="content">
<div class="posts">
<article class="post">
<div class="box-wrap">
<div class="box">
<header>
<div class="date-title"><?php echo get_the_date(); ?></div>
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php _e('404 - Page Not Found','island'); ?></a></h1>
</header>
<div class="post-content">
<p><?php _e('Sorry, but the page you are looking for has moved or no longer exists. Please use the search or the archives below to try and locate the page you were looking for.','island'); ?></p>
<?php get_search_form();?>
<div id="archive">
<div class="archive-col">
<div class="archive-box">
<h4><?php _e('Archive By Day','island'); ?></h4>
<ul>
<?php wp_get_archives('type=daily&limit=15'); ?>
</ul>
</div>
<div class="archive-box">
<h4><?php _e('Archive By Month','island'); ?></h4>
<ul>
<?php wp_get_archives('type=monthly&limit=12'); ?>
</ul>
</div>
<div class="archive-box">
<h4><?php _e('Archive By Year','island'); ?></h4>
<ul>
<?php wp_get_archives('type=yearly&limit=12'); ?>
</ul>
</div>
<div class="archive-box">
<h4><?php _e('Latest Posts','island'); ?></h4>
<ul>
<?php wp_get_archives('type=postbypost&limit=20'); ?>
</ul>
</div>
<div class="archive-box">
<h4><?php _e('Pages','island'); ?></h4>
<ul>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
</div>
<div class="archive-box">
<h4><?php _e('Categories','island'); ?></h4>
<ul>
<?php wp_list_categories('orderby=name&title_li='); ?>
</ul>
</div>
</div>
</div><!-- archive -->
</div><!-- post content -->
<div class="clearfix"></div>
</div><!-- box -->
</div><!-- box wrap -->
</article><!-- post-->
</div>
</div><!-- content -->
<!-- footer -->
<?php get_footer(); ?>