-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
30 lines (29 loc) · 1.62 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
<?php get_header(); ?>
<div id="content">
<div class="container">
<div class="row">
<div id="main" class="clearfix col-xs-12" role="main">
<article id="post-not-found" class="clearfix">
<header>
<div class="hero-unit">
<h1><?php _e("404 - Article Not Found","JD_BOOTSTRAP"); ?></h1>
<p class="lead"><?php _e("Sorry, we can't find what you were looking for.","JD_BOOTSTRAP"); ?></p>
</div> <!--/.hero-unit-->
</header> <!-- end article header -->
<section class="post_content">
<p><?php _e("Whatever you were looking for was not found, either the page you are looking for has moved or is no longer available.","JD_BOOTSTRAP"); ?></p>
<div class="row">
<div class="col-lg-8" style="margin-bottom:24px;">
<p><?php _e("Please use the seach box below if you are looking for something specific. ","JD_BOOTSTRAP"); ?></p>
<p><a class="btn btn-info btn-white" href="<?php bloginfo('url'); ?>"> <i class="fa fa-home"></i> <?php bloginfo('name'); ?> Home </a></p>
<br>
<?php get_search_form(); ?>
</div><!--/.col-->
</div><!--/.row-->
</section> <!-- end article section -->
</article> <!-- end article -->
</div> <!--/main -->
</div><!--/row-->
</div> <!--/container -->
</div> <!-- /content -->
<?php get_footer(); ?>