2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying 404 pages (Not Found).
|
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2012-08-25 16:57:24 +00:00
|
|
|
<div id="primary" class="content-area">
|
2013-07-30 19:12:45 +00:00
|
|
|
<main id="main" class="site-main" role="main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-02 01:28:18 +00:00
|
|
|
<section class="error-404 not-found">
|
|
|
|
<header class="page-header">
|
|
|
|
<h1 class="page-title"><?php _e( 'Oops! That page can’t be found.', '_s' ); ?></h1>
|
|
|
|
</header><!-- .page-header -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-02 01:28:18 +00:00
|
|
|
<div class="page-content">
|
2012-01-11 04:51:12 +00:00
|
|
|
<p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', '_s' ); ?></p>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
<?php get_search_form(); ?>
|
|
|
|
|
|
|
|
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
|
|
|
|
|
2013-03-26 22:55:49 +00:00
|
|
|
<?php if ( _s_categorized_blog() ) : // Only show the widget if site has multiple categories. ?>
|
|
|
|
<div class="widget widget_categories">
|
2013-03-26 22:56:47 +00:00
|
|
|
<h2 class="widgettitle"><?php _e( 'Most Used Categories', '_s' ); ?></h2>
|
2012-01-07 03:25:13 +00:00
|
|
|
<ul>
|
2013-04-20 00:26:43 +00:00
|
|
|
<?php
|
|
|
|
wp_list_categories( array(
|
|
|
|
'orderby' => 'count',
|
|
|
|
'order' => 'DESC',
|
|
|
|
'show_count' => 1,
|
|
|
|
'title_li' => '',
|
2013-04-20 15:45:36 +00:00
|
|
|
'number' => 10,
|
2013-04-20 00:26:43 +00:00
|
|
|
) );
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
</ul>
|
2012-05-23 19:01:41 +00:00
|
|
|
</div><!-- .widget -->
|
2013-03-26 22:55:49 +00:00
|
|
|
<?php endif; ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
<?php
|
2014-04-18 13:15:42 +00:00
|
|
|
/* translators: %1$s: smiley */
|
|
|
|
$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', '_s' ), convert_smilies( ':)' ) ) . '</p>';
|
|
|
|
the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
|
2012-01-07 03:25:13 +00:00
|
|
|
?>
|
|
|
|
|
|
|
|
<?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>
|
|
|
|
|
2013-03-02 01:28:18 +00:00
|
|
|
</div><!-- .page-content -->
|
2013-07-11 19:18:47 +00:00
|
|
|
</section><!-- .error-404 -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-07-30 19:12:45 +00:00
|
|
|
</main><!-- #main -->
|
2013-03-05 00:41:38 +00:00
|
|
|
</div><!-- #primary -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
|
|
|
<?php get_footer(); ?>
|