-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path404.php
More file actions
24 lines (21 loc) · 699 Bytes
/
Copy path404.php
File metadata and controls
24 lines (21 loc) · 699 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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Ignition
* @since 1.0
* @version 1.0
*/
get_header(); ?>
<div id="primary" class="error-404 not-found content-area layout-center-content">
<main id="main" class="site-main" role="main">
<div class="container-content text-center">
<div class="h1 title-404">404</div>
<p><?php _e( 'It looks like nothing was found at this location.', 'ignition' ); ?></p>
<a class="button" href="<?php echo home_url(); ?>"><?php _e( 'Go To Home', 'ignition' ); ?></a>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer();