-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
54 lines (44 loc) · 1.47 KB
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage WP-Bootstrap
* @since WP-Bootstrap 0.7
*
* Last Revised: January 22, 2012
*/
get_header(); ?>
<div class="row">
<div class="container">
<?php if (function_exists('bootstrapwp_breadcrumbs')) bootstrapwp_breadcrumbs(); ?>
</div><!--/.container -->
</div><!--/.row -->
<div class="container">
<!-- Masthead
================================================== -->
<header class="jumbotron subhead" id="overview">
<h1><?php _e( 'This is Embarrassing', 'bootstrapwp' ); ?></h1>
<p class="lead"><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching, or one of the links below, can help.', 'bootstrapwp' ); ?></p>
</header>
<div class="row content">
<div class="span8">
<div class="well">
<?php get_search_form(); ?>
</div><!--/.well -->
<div class="row">
<div class="span4">
<h2>All Pages</h2>
<?php wp_page_menu(); ?>
</div><!--/.span4 -->
<div class="span4">
<?php the_widget( 'WP_Widget_Recent_Posts' ); ?>
<h2><?php _e( 'Most Used Categories', 'bootstrapwp' ); ?></h2>
<ul>
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
</ul>
</div><!--/.span4 -->
</div><!--/.row -->
</div><!--/.span8 -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>