-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.php
36 lines (30 loc) · 870 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
30
31
32
33
34
35
36
<?php
/**
* The template for displaying 404 pages (not found)
*
* @package FoundationPress
* @since FoundationPress 1.0.0
*/
get_header(); ?>
<div class="main-container">
<div class="main-grid">
<main class="main-content main-content--with-sidebar">
<article>
<header>
<h1 class="entry-title"><?php esc_html_e( 'Page not found', 'foundationpress' ); ?></h1>
</header>
<div class="entry-content">
<p class="bottom">
<?php esc_html_e( 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'foundationpress' ); ?>
</p>
<a class="button" href="<?php echo esc_url( home_url() ); ?>">
<?php esc_html_e( 'Return to the homepage', 'foundationpress' ); ?>
</a>
</div>
</article>
</main>
<?php get_sidebar(); ?>
</div>
</div>
<?php
get_footer();