-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
executable file
·25 lines (18 loc) · 813 Bytes
/
404.php
File metadata and controls
executable file
·25 lines (18 loc) · 813 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
<?php get_header(); ?>
<div class="container">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<section class="error-404 not-found">
<div class="page-content">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'highstake-lite' ); ?></p>
<ul>
<li><a href="javascript: history.go(-1);"><?php esc_html_e( 'Go to Previous Page', 'highstake-lite' ) ?></a></li>
<li><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php esc_html_e( 'Go to Home Page', 'highstake-lite' ) ?></a></li>
</ul>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>