wp/wp-content/themes/twentyfourteen/404.php
changeset 8 c7c34916027a
parent 7 cf61fcea0001
child 9 177826044cd9
equal deleted inserted replaced
7:cf61fcea0001 8:c7c34916027a
     1 <?php
       
     2 /**
       
     3  * The template for displaying 404 pages (Not Found)
       
     4  *
       
     5  * @package WordPress
       
     6  * @subpackage Twenty_Fourteen
       
     7  * @since Twenty Fourteen 1.0
       
     8  */
       
     9 
       
    10 get_header(); ?>
       
    11 
       
    12 
       
    13 	<div id="primary" class="content-area">
       
    14 		<div id="content" class="site-content" role="main">
       
    15 
       
    16 			<header class="page-header">
       
    17 				<h1 class="page-title"><?php _e( 'Not Found', 'twentyfourteen' ); ?></h1>
       
    18 			</header>
       
    19 
       
    20 			<div class="page-content">
       
    21 				<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentyfourteen' ); ?></p>
       
    22 
       
    23 				<?php get_search_form(); ?>
       
    24 			</div><!-- .page-content -->
       
    25 
       
    26 		</div><!-- #content -->
       
    27 	</div><!-- #primary -->
       
    28 
       
    29 <?php
       
    30 get_sidebar( 'content' );
       
    31 get_sidebar();
       
    32 get_footer();