This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/404.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2012-01-07 03:25:13 +00:00
<?php
/**
* The template for displaying 404 pages (not found).
2012-01-07 03:25:13 +00:00
*
* @package _s
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
2012-01-07 03:25:13 +00:00
<section class="error-404 not-found">
<header class="page-header">
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', '_s' ); ?></h1>
</header><!-- .page-header -->
2012-01-07 03:25:13 +00:00
<div class="page-content">
<p><?php esc_html_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' ); ?>
<?php if ( _s_categorized_blog() ) : // Only show the widget if site has multiple categories. ?>
<div class="widget widget_categories">
<h2 class="widget-title"><?php esc_html_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' => '',
'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 -->
<?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' ); ?>
</div><!-- .page-content -->
</section><!-- .error-404 -->
2012-01-07 03:25:13 +00:00
</main><!-- #main -->
</div><!-- #primary -->
2012-01-07 03:25:13 +00:00
<?php get_footer(); ?>