-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
29 lines (23 loc) · 782 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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package jwd
*/
get_header(); ?>
<div id="primary" class="content-area padding-site">
<main id="main" class="site-main container-site">
<section id="post-<?php the_ID(); ?>" <?php post_class('error-404'); ?>>
<header class="entry-header mar-t-25">
<h1 class="entry-title">This page does not exist.</h1>
</header><!-- .entry-header -->
<div class="entry-content mar-b-35">
<a class="visit-home-page color-primary" href="<?php echo get_home_url(); ?>">Click here to visit the home page.</a>
</div><!-- .entry-content -->
</section><!-- #post-## -->
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();