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

90 lines
2.1 KiB
PHP
Raw 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
*/
2019-06-20 08:57:12 +00:00
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
2018-09-10 21:59:04 +00:00
2016-11-21 18:47:05 +00:00
get_header();
2018-11-18 22:55:54 +00:00
$container = get_theme_mod( 'understrap_container_type' );
?>
<div class="wrapper" id="error-404-wrapper">
2016-03-09 09:16:22 +00:00
<div class="<?php echo esc_attr( $container ); ?>" id="content" tabindex="-1">
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
<div class="col-md-12 content-area" id="primary">
2016-03-03 19:20:46 +00:00
<main class="site-main" id="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
2018-11-18 22:55:54 +00:00
<h1 class="page-title"><?php esc_html_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
2018-11-18 22:55:54 +00:00
<p><?php esc_html_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
2017-01-27 06:56:39 +00:00
<h2 class="widget-title"><?php esc_html_e( 'Most Used Categories', 'understrap' ); ?></h2>
2016-03-09 09:16:22 +00:00
2016-11-21 18:47:05 +00:00
<ul>
<?php
2018-11-18 22:55:54 +00:00
wp_list_categories(
array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10,
)
);
2016-11-21 18:47:05 +00:00
?>
</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
2016-11-21 18:47:05 +00:00
/* translators: %1$s: smiley */
$archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'understrap' ), convert_smilies( ':)' ) ) . '</p>';
2016-11-21 18:47:05 +00:00
the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
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 -->
</div><!-- .row -->
2018-11-18 22:55:54 +00:00
</div><!-- #content -->
2014-12-10 11:36:38 +00:00
2018-11-18 22:55:54 +00:00
</div><!-- #error-404-wrapper -->
2014-12-10 11:36:38 +00:00
<?php get_footer();