-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·63 lines (55 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage BootstrapWP
*/
get_header(); ?>
<div class="container">
<div class="row">
<div class="span12">
<?php if (function_exists('bootstrapwp_breadcrumbs')) {
bootstrapwp_breadcrumbs();
} ?>
</div>
</div>
<div class="row content">
<div class="span8">
<header class="page-title">
<h1><?php _e('This is Embarrassing', 'bootstrapwp'); ?></h1>
</header>
<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>
<div class="well">
<?php get_search_form(); ?>
</div>
<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>
<?php get_sidebar(); ?>
<?php get_footer();