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.
understrap/404.php

78 lines
2.9 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The template for displaying 404 pages (not found).
* @package understrap
*/
get_header(); ?>
<div class="wrapper" id="404-wrapper">
2014-12-10 11:36:38 +00:00
<div id="content" class="container">
2016-03-09 09:16:22 +00:00
<div class="row">
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<div id="primary" class="content-area">
2016-03-03 19:20:46 +00:00
2016-03-09 09:16:22 +00:00
<main id="main" class="site-main" role="main">
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<section class="error-404 not-found">
<header class="page-header">
2016-03-03 19:20:46 +00:00
2016-03-09 09:16:22 +00:00
<h1 class="page-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'understrap' ); ?></h1>
</header><!-- .page-header -->
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<div class="page-content">
2016-03-03 19:20:46 +00:00
2016-03-09 09:16:22 +00:00
<p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'understrap' ); ?></p>
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<?php get_search_form(); ?>
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<?php if ( understrap_categorized_blog() ) : // Only show the widget if site has multiple categories. ?>
2016-03-03 19:20:46 +00:00
2016-03-09 09:16:22 +00:00
<div class="widget widget_categories">
2016-03-03 19:20:46 +00:00
2016-03-09 09:16:22 +00:00
<h2 class="widget-title"><?php _e( 'Most Used Categories', 'understrap' ); ?></h2>
2016-03-03 19:20:46 +00:00
2016-03-09 09:16:22 +00:00
<ul>
<?php
wp_list_categories( array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10,
) );
?>
</ul>
2016-03-03 19:20:46 +00:00
2016-03-09 09:16:22 +00:00
</div><!-- .widget -->
<?php endif; ?>
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<?php
/* translators: %1$s: smiley */
$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'understrap' ), convert_smilies( ':)' ) ) . '</p>';
the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
?>
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
<?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>
</div><!-- .page-content -->
</section><!-- .error-404 -->
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
</main><!-- #main -->
</div><!-- #primary -->
2014-12-10 11:36:38 +00:00
2016-03-09 09:16:22 +00:00
</div> <!-- .row -->
2014-12-10 11:36:38 +00:00
</div><!-- Container end -->
</div><!-- Wrapper end -->
<?php get_footer(); ?>