forked from DuenaStudio/DuenaTheme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
25 lines (22 loc) · 841 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package duena-revival
*/
get_header(); ?>
<div id="primary" class="page404 col-md-12">
<div class="hentry">
<div class="error404-num">404</div>
<div>
<hgroup>
<h1><?php _e( 'Sorry!', 'duena-revival' ); ?></h1>
<h2><?php _e( 'Page Not Found', 'duena-revival' ); ?></h2>
</hgroup>
<h6><?php _e( 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'duena-revival' ); ?></h6>
<p><?php _e( 'Please try using our search box below to look for information on the internet.', 'duena-revival' ); ?></p>
<?php get_search_form(); /* outputs the default Wordpress search form */ ?>
</div>
</div>
</div><!-- #primary -->
<?php get_footer(); ?>