Changeset 14549
- Timestamp:
- 05/10/2010 09:10:12 PM (14 years ago)
- Location:
- trunk/wp-content/themes/twentyten
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/404.php
r13885 r14549 12 12 13 13 <div id="container"> 14 <div id="content" >14 <div id="content" role="main"> 15 15 16 16 <div id="post-0" class="post error404 not-found"> -
trunk/wp-content/themes/twentyten/archive.php
r14544 r14549 17 17 18 18 <div id="container"> 19 <div id="content" >19 <div id="content" role="main"> 20 20 21 21 <?php the_post(); ?> -
trunk/wp-content/themes/twentyten/attachment.php
r14541 r14549 12 12 13 13 <div id="container"> 14 <div id="content" >14 <div id="content" role="main"> 15 15 16 16 <?php the_post(); ?> -
trunk/wp-content/themes/twentyten/author.php
r14533 r14549 12 12 13 13 <div id="container"> 14 <div id="content" >14 <div id="content" role="main"> 15 15 16 16 <?php the_post(); ?> -
trunk/wp-content/themes/twentyten/category.php
r14544 r14549 12 12 13 13 <div id="container"> 14 <div id="content" >14 <div id="content" role="main"> 15 15 16 16 <h1 class="page-title"><?php -
trunk/wp-content/themes/twentyten/footer.php
r14523 r14549 13 13 </div><!-- #main --> 14 14 15 <div id="footer" >15 <div id="footer" role="contentinfo"> 16 16 <div id="colophon"> 17 17 -
trunk/wp-content/themes/twentyten/header.php
r14544 r14549 46 46 <div id="header"> 47 47 <div id="masthead"> 48 <div id="branding" >48 <div id="branding" role="banner"> 49 49 <?php $heading_tag = ( is_home() || is_front_page() )? 'h1' : 'div'; ?> 50 50 <<?php echo $heading_tag; ?> id="site-title"> … … 68 68 </div><!-- #branding --> 69 69 70 <div id="access" >70 <div id="access" role="navigation"> 71 71 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div> 72 72 <?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?> -
trunk/wp-content/themes/twentyten/index.php
r14433 r14549 18 18 19 19 <div id="container"> 20 <div id="content" >20 <div id="content" role="main"> 21 21 22 22 <?php -
trunk/wp-content/themes/twentyten/onecolumn-page.php
r13885 r14549 15 15 16 16 <div id="container" class="onecolumn"> 17 <div id="content" >17 <div id="content" role="main"> 18 18 19 19 <?php the_post(); ?> -
trunk/wp-content/themes/twentyten/page.php
r13885 r14549 17 17 18 18 <div id="container"> 19 <div id="content" >19 <div id="content" role="main"> 20 20 21 21 <?php the_post(); ?> -
trunk/wp-content/themes/twentyten/search.php
r13885 r14549 12 12 13 13 <div id="container"> 14 <div id="content" >14 <div id="content" role="main"> 15 15 16 16 <?php if ( have_posts() ) : ?> -
trunk/wp-content/themes/twentyten/sidebar-footer.php
r13885 r14549 17 17 ) : 18 18 ?> 19 <div id="footer-widget-area" >19 <div id="footer-widget-area" role="complementary"> 20 20 <?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?> 21 21 <div id="first" class="widget-area"> -
trunk/wp-content/themes/twentyten/sidebar.php
r13885 r14549 9 9 ?> 10 10 11 <div id="primary" class="widget-area" >11 <div id="primary" class="widget-area" role="complementary"> 12 12 <ul class="xoxo"> 13 13 <?php if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : // begin primary widget area ?> … … 36 36 37 37 <?php if ( is_active_sidebar( 'secondary-widget-area' ) ) : // Nothing here by default and design ?> 38 <div id="secondary" class="widget-area" >38 <div id="secondary" class="widget-area" role="complementary"> 39 39 <ul class="xoxo"> 40 40 <?php dynamic_sidebar( 'secondary-widget-area' ); ?> -
trunk/wp-content/themes/twentyten/single.php
r14544 r14549 12 12 13 13 <div id="container"> 14 <div id="content" >14 <div id="content" role="main"> 15 15 16 16 <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> -
trunk/wp-content/themes/twentyten/tag.php
r14544 r14549 12 12 13 13 <div id="container"> 14 <div id="content" >14 <div id="content" role="main"> 15 15 16 16 <?php the_post(); ?>
Note: See TracChangeset
for help on using the changeset viewer.