-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path404.php
More file actions
40 lines (32 loc) · 1.22 KB
/
404.php
File metadata and controls
40 lines (32 loc) · 1.22 KB
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
37
38
39
40
<?php
/**
* The template for displaying 404 pages.
*
* @package Standard
* @version 3.2
* @since 3.0
*/
?>
<?php get_header(); ?>
<div id="wrapper">
<div class="container">
<div class="row">
<div id="main" class="span12 clearfix" role="main">
<div id="nothing-found" class="no-results not-found">
<div class="entry-content clearfix">
<img src="<?php echo esc_url( get_template_directory_uri() . '/images/lightning.png' ); ?>" alt="<?php esc_attr_e( '404', 'standard'); ?>" />
<h1 class="404-title"><span><?php _e( '404', 'standard' ); ?></span> <?php _e( 'Whoa...you broke the Internet!', 'standard' ); ?></h1>
<p>
<?php _e( 'The specified address does not contain a page or blog post at this time', 'standard' ); ?>.
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php esc_attr_e( 'Page Not Found', 'standard' ); ?>">
<?php _e( 'Click here to return home.', 'standard' ); ?>
</a>
</p>
<?php standard_get_search_form(); ?>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
</div><!-- /#main -->
</div><!-- /row -->
</div><!-- /container -->
</div> <!-- /#wrapper -->
<?php get_footer(); ?>