-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
29 lines (22 loc) · 762 Bytes
/
404.php
File metadata and controls
29 lines (22 loc) · 762 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
27
28
29
<?php
/**
* 404 Page Template
*
* @package devstarter
*/
get_header(); ?>
<main class="site-content" id="main-content">
<div class="devstarter-container text-center">
<h1><?php esc_html_e( '404 - Page Not Found', 'devstarter' ); ?></h1>
<p><?php esc_html_e( 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'devstarter' ); ?></p>
<div class="mt-2">
<?php get_search_form(); ?>
</div>
<div class="mt-2">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="devstarter-btn">
<?php esc_html_e( 'Back to Home', 'devstarter' ); ?>
</a>
</div>
</div>
</main>
<?php get_footer(); ?>