forked from senlin/soblossom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·56 lines (38 loc) · 1.53 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package soblossom
*/
get_header(); ?>
<div id="content" class="contentarea-wrap">
<div id="inner-content" class="row">
<main id="main" class="site-main small-12 medium-8 large-9 columns clearfix" role="main">
<article id="404-notfound" class="error-404 not-found clearfix">
<header class="entry-header">
<h1 class="page-title"><?php _e( 'Nothing Here.', 'soblossom' ); ?></h1>
</header><!-- .entry-header -->
<section class="entry-content">
<?php echo '<p>' . __( 'Apologies, there is nothing here. Maybe try a search or one of the links below or in the sidebar?', 'soblossom' ) . '</p>'; ?>
</section><!-- .entry-content -->
<section class="search-form">
<?php get_search_form(); ?>
</section><!-- .search -->
<section class="suggested-content row">
<div class="pages medium-6 columns">
<?php
echo '<h2>' . __( 'Pages', 'soblossom' ) . '</h2><ul>';
wp_list_pages( 'title_li=' );
echo '</ul>';
?>
</div> <!-- end .pages -->
<div class="posts medium-6 columns">
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
</div> <!-- end .posts -->
</section> <!-- end .suggested-content -->
</article><!-- #404-notfound -->
</main><!-- #main.site-main -->
<?php get_sidebar(); ?>
</div> <!-- end #inner-content -->
</div> <!-- end #content.contentarea-wrap -->
<?php get_footer(); ?>