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

84 lines
1.9 KiB
PHP
Raw Permalink Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The template for displaying 404 pages (not found).
2016-11-21 18:47:05 +00:00
*
2014-12-10 11:36:38 +00:00
* @package understrap
*/
2016-11-21 18:47:05 +00:00
get_header();
?>
<div class="wrapper" id="404-wrapper">
2016-03-09 09:16:22 +00:00
2016-11-21 18:47:05 +00:00
<div class="container" id="content">
2016-03-03 19:20:46 +00:00
2016-11-21 18:47:05 +00:00
<div class="row">
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<div class="content-area" id="primary">
2016-03-03 19:20:46 +00:00
2016-11-21 18:47:05 +00:00
<main class="site-main" id="main" role="main">
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<section class="error-404 not-found">
2016-03-03 19:20:46 +00:00
2016-11-21 18:47:05 +00:00
<header class="page-header">
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<h1 class="page-title"><?php _e( 'Oops! That page can&rsquo;t be found.',
'understrap' ); ?></h1>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
</header><!-- .page-header -->
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<div class="page-content">
2016-03-03 19:20:46 +00:00
2016-11-21 18:47:05 +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>
2016-03-03 19:20:46 +00:00
2016-11-21 18:47:05 +00:00
<?php get_search_form(); ?>
2016-03-03 19:20:46 +00:00
2016-11-21 18:47:05 +00:00
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
2016-03-03 19:20:46 +00:00
2016-11-21 18:47:05 +00:00
<?php if ( understrap_categorized_blog() ) : // Only show the widget if site has multiple categories. ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<div class="widget widget_categories">
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
<h2 class="widget-title"><?php _e( 'Most Used Categories', 'understrap' ); ?></h2>
2016-03-09 09:16:22 +00:00
2016-11-21 18:47:05 +00:00
<ul>
<?php
wp_list_categories( array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10,
) );
?>
</ul>
2014-12-10 11:36:38 +00:00
2016-11-21 18:47:05 +00:00
</div><!-- .widget -->
2016-11-21 18:47:05 +00:00
<?php endif; ?>
2016-11-21 18:47:05 +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" );
?>
2016-11-21 18:47:05 +00:00
<?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>
2016-11-21 18:47:05 +00:00
</div><!-- .page-content -->
2016-11-21 18:47:05 +00:00
</section><!-- .error-404 -->
2016-11-21 18:47:05 +00:00
</main><!-- #main -->
2016-11-21 18:47:05 +00:00
</div><!-- #primary -->
2016-11-21 18:47:05 +00:00
</div> <!-- .row -->
2016-11-21 18:47:05 +00:00
</div><!-- Container end -->
2014-12-10 11:36:38 +00:00
</div><!-- Wrapper end -->
<?php get_footer(); ?>