-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·29 lines (26 loc) · 880 Bytes
/
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
<?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="container">
<div class="row content">
<div class="span7 well">
<header class="subhead" id="overview">
<?php if (function_exists('bootstrapwp_breadcrumbs')) bootstrapwp_breadcrumbs(); ?>
<h2><?php _e( 'This is Embarrassing', 'bootstrapwp' ); ?></h2>
<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>
<h3>All Pages</h3>
<?php wp_page_menu(); ?>
</div><!--/.span7 well -->
<?php get_sidebar('blog'); ?>
</div><!--/.row -->
</div><!--/.Container -->
<?php get_footer(); ?>