This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
70 lines (55 loc) · 1.84 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
63
64
65
66
67
68
69
70
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Baseline
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<article id="post-<?php the_ID(); ?>" <?php post_class( 'post' ); ?>>
<div class="featured-image"><div class="fallback-single"></div></div>
<div class="container">
<header class="entry-header">
<h1 class="entry-title"><?php esc_html_e( 'Page Not Found', 'baseline' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Please use the search box and links below to locate the content you were looking for.', 'baseline' ); ?></p>
<?php get_search_form(); ?>
<!-- Page sitemap -->
<h3><?php esc_html_e( 'Sitemap', 'baseline' ); ?></h3>
<ul>
<?php wp_list_pages( 'sort_column=menu_order&title_li=' ); ?>
</ul>
<hr/>
<!-- Latest posts -->
<h3><?php esc_html_e( 'Latest Posts', 'baseline' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=postbypost&limit=10' ); ?>
</ul>
<hr/>
<!-- Category archive -->
<h3 class="widgettitle"><?php esc_html_e( 'Categories', 'baseline' ); ?></h3>
<ul>
<?php
wp_list_categories( array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10,
) );
?>
</ul>
<hr/>
<!-- Montly archive -->
<h3><?php esc_html_e( 'Archives', 'baseline' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=monthly&limit=12' ); ?>
</ul>
</div><!-- .entry-content -->
</div><!-- .container-->
</article><!-- #post-## -->
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>