forked from AndorChen/V2Press
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
24 lines (21 loc) · 653 Bytes
/
404.php
File metadata and controls
24 lines (21 loc) · 653 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
/**
* HTTP 404 Not Found page template.
*
* @since 0.0.2
*/
get_header(); ?>
<div id="main">
<section id="four0four-page-box" class="box">
<article id="page-404">
<div class="heading">
<p class="xsmall fade"><?php vp_breadcrumb(); ?></p>
</div>
<div class="inner topic-content">
<h2 class="fade center xlarge"><?php _e( 'Sorry, not found what you were looking for.', 'v2press' ); ?></h2>
</div>
</article>
</section>
</div><!--END #main-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>