forked from CAWebPublishing/CAWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
59 lines (47 loc) · 1.18 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package CAWeb
*/
?>
<!DOCTYPE html>
<html class="no-js" lang="en">
<?php
get_header();
?>
<body <?php body_class( 'primary' ); ?>>
<?php require_once 'partials/header.php'; ?>
<div id="main-content" class="main-content">
<div class="section">
<main class="main-primary">
<article id="post-0" <?php post_class( 'et_pb_post not_found' ); ?>>
<div class="entry-content">
<!-- Page Title-->
<h1>Page Not Found</h1>
<div class="description">The page you requested was not found.</div>
<div class="section section-none">
<div class="agency-form">
<h1>Search Site For:</h1>
<gcse:searchbox-only resultsUrl="<?php print esc_url( site_url( 'serp' ) ); ?>"></gcse:searchbox-only>
</div>
</div>
</div>
</article> <!-- .et_pb_post -->
</main>
</div>
</div> <!-- #main-content -->
<style>
.entry-content tr td {
padding: 0px !important;
border: unset !important;
}
.gsc-input {
border: 1px solid #DDD !important;
}
</style>
<?php get_footer(); ?>
</body>
</html>