-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
26 lines (16 loc) · 702 Bytes
/
404.php
File metadata and controls
26 lines (16 loc) · 702 Bytes
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
<?php get_header(); ?>
<div class="row">
<div class="<?php pipdig_left_or_right(); ?> content-area" role="main">
<section class="error-404 not-found">
<header class="page-header">
<h1 class="page-title"><?php _e( 'Oops! That page can’t be found.', 'pipdig-textdomain' ); ?></h1>
<!-- .page-header --></header>
<div class="page-content">
<p><?php _e( 'It looks like this page is missing. Maybe try a search below?', 'pipdig-textdomain' ); ?></p>
<?php get_search_form(); ?>
<!-- .page-content --></div>
<!-- .error-404 --></section>
<!-- .content-area --></div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>