-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
33 lines (28 loc) · 852 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
30
31
32
33
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-sm-9">
<div class="row">
<div id="double-left-column" class="col-sm-8">
<div class="post-wrapper">
<div class="h1-wrapper">
<h1><?php _e( '404 Error: Page Not Found', 'ipin' ); ?></h1>
</div>
<div class="post-content text-center">
<?php _e('Apologies, but the page you requested could not be found.', 'ipin') ?><br />
<?php _e('Perhaps searching will help.', 'ipin'); ?></p>
<?php get_search_form(); ?>
</div>
</div>
</div>
<div id="single-right-column" class="col-sm-4">
<?php get_sidebar('left'); ?>
</div>
</div>
</div>
<div class="col-sm-3">
<?php get_sidebar('right'); ?>
</div>
</div>
</div>
<?php get_footer(); ?>