forked from nicolas-van/wordpress-simple-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
23 lines (20 loc) · 645 Bytes
/
Copy path404.php
File metadata and controls
23 lines (20 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php get_template_part( 'content', 'standard-top' ); ?>
<article id="post-not-found" class="section">
<header>
<div class="article-header">
<h1>
<?php _e("Page not found", "default"); ?>
</h1>
</div>
</header>
<section class="post_content">
<p class="lead">
We couldn't find the content you were looking for.
</p>
<p>
We've recently moved some of our site content around, and it's possible we forgot to account
for a few things. Would you like to <a href="/contact">let us know</a>?
</p>
</section>
</article>
<?php get_template_part( 'content', 'standard-bottom' ); ?>