Make WordPress Core


Ignore:
Timestamp:
08/14/2013 04:38:01 PM (13 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: first pass at matching code standards achieved with Twenty Thirteen development. See #24858, props obenland.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/404.php

    r24832 r25021  
    1212        <div id="content" class="site-content" role="main">
    1313
    14             <article id="post-0" class="post error404 not-found">
    15                 <header class="entry-header">
    16                     <h1 class="entry-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'twentyfourteen' ); ?></h1>
    17                 </header><!-- .entry-header -->
     14            <header class="page-header">
     15                <h1 class="page-title"><?php _e( "Oops! That page can't be found.", 'twentyfourteen' ); ?></h1>
     16            </header>
    1817
    19                 <div class="entry-content">
    20                     <p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'twentyfourteen' ); ?></p>
     18            <div class="page-content">
     19                <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentyfourteen' ); ?></p>
    2120
    22                     <?php get_search_form(); ?>
     21                <?php get_search_form(); ?>
     22            </div><!-- .page-content -->
    2323
    24                 </div><!-- .entry-content -->
    25             </article><!-- #post-0 .post .error404 .not-found -->
     24        </div><!-- #content -->
     25    </div><!-- #primary -->
    2626
    27         </div><!-- #content .site-content -->
    28     </div><!-- #primary .content-area -->
    29 
    30 <?php get_sidebar( 'content' ); ?>
    31 
    32 <?php get_sidebar(); ?>
    33 
    34 <?php get_footer(); ?>
     27<?php
     28get_sidebar( 'content' );
     29get_sidebar();
     30get_footer();
Note: See TracChangeset for help on using the changeset viewer.