-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
35 lines (28 loc) · 1.08 KB
/
404.php
File metadata and controls
35 lines (28 loc) · 1.08 KB
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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Tower
*/
get_header( 'custom');
?>
<main id="primary" class="site-main">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- <div class="page-container"></div> -->
<div class="front-content">
<section class="bgcolor8">
<div class="header-404">
<div class="content-container single-col-content">
<h2 class="contact-title-404"><?php esc_html_e( '404: Page Not Found!', 'tower' ); ?></h2>
<p><?php esc_html_e( 'The page you are searching for does not exist. Let us know if a link got you here and we will fix the link. But however you got here, click one of the links at the top or bottom of the page or try the big HOME button below this paragraph.', 'tower' ); ?></p>
<a class="btn btn--home" href="https://kernixwebdesign.com/">HOME</a>
</div>
</div>
</section>
</div><!-- .front-content -->
</article><!-- #post-<?php the_ID(); ?> -->
</main><!-- #main -->
<?php
get_footer();