-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.php
23 lines (23 loc) · 1.02 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
<?php get_header(); ?>
<div class="container">
<div class="row">
<div id="main" class="col-lg-9">
<article id="post-not-found" <?php post_class('post-not-found hentry clearfix'); ?>>
<header class="article-header page-header">
<h1 class="entry-title page-title"><?php _e('404 - Page Not Found', 'blankout'); ?></h1>
</header>
<section class="entry-content">
<p>
<strong><?php _e('404', 'blankout'); ?></strong>: <?php _e('the requested page could not be found. Try a search to find what you were looking for. Alternatively, you can return to', 'blankout'); ?>
<a href="javascript:history.go(-1);" title="<?php _e('Go back to where you were', 'blankout'); ?>"><?php _e('the previous page', 'blankout'); ?></a>.</p>
</section>
<section class="search">
<?php get_search_form(); ?>
<?php if (function_exists('wbz404_suggestions')) : wbz404_suggestions(); endif; ?>
</section>
<footer class="article-footer"></footer>
</article>
</div>
</div>
</div>
<?php get_footer(); ?>