Make WordPress Core

Ticket #21675: twentytwelve-content.diff

File twentytwelve-content.diff, 10.6 KB (added by DrewAPicture, 12 years ago)
  • wp-content/themes/twentytwelve/content-aside.php

     
    99?>
    1010
    1111        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12
    1213                <div class="aside">
    1314                        <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
     15
    1416                        <div class="entry-content">
    1517                                <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
    1618                        </div><!-- .entry-content -->
     
    1820
    1921                <footer class="entry-meta">
    2022                        <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
     23
    2124                        <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
    2225                </footer><!-- .entry-meta -->
     26
    2327        </article><!-- #post -->
  • wp-content/themes/twentytwelve/content-link.php

     
    99?>
    1010
    1111        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12
    1213                <header><?php _e( 'Link', 'twentytwelve' ); ?></header>
     14
    1315                <div class="entry-content">
    1416                        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
    1517                </div><!-- .entry-content -->
    1618
    1719                <footer class="entry-meta">
    1820                        <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
     21
    1922                        <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
    2023                </footer><!-- .entry-meta -->
     24
    2125        </article><!-- #post -->
  • wp-content/themes/twentytwelve/content-none.php

     
    99?>
    1010
    1111        <article id="post-0" class="post no-results not-found">
     12
    1213                <header class="entry-header">
    1314                        <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
    14                 </header>
     15                </header><!-- .entry-header -->
    1516
    1617                <div class="entry-content">
    1718                        <p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
     19
    1820                        <?php get_search_form(); ?>
    1921                </div><!-- .entry-content -->
     22
    2023        </article><!-- #post-0 -->
  • wp-content/themes/twentytwelve/content.php

     
    99?>
    1010
    1111        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12
    1213                <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
    13                 <div class="featured-post">
    14                         <?php _e( 'Featured post', 'twentytwelve' ); ?>
    15                 </div>
     14                        <div class="featured-post">
     15                                <?php _e( 'Featured post', 'twentytwelve' ); ?>
     16                        </div><!-- .featured-post -->
    1617                <?php endif; ?>
     18
    1719                <header class="entry-header">
     20
    1821                        <?php the_post_thumbnail(); ?>
     22
    1923                        <?php if ( is_single() ) : ?>
    20                         <h1 class="entry-title"><?php the_title(); ?></h1>
     24                                <h1 class="entry-title"><?php the_title(); ?></h1>
    2125                        <?php else : ?>
    22                         <h1 class="entry-title">
    23                                 <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
    24                         </h1>
     26                                <h1 class="entry-title">
     27                                        <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
     28                                </h1><!-- .entry-title -->
    2529                        <?php endif; // is_single() ?>
     30
    2631                        <?php if ( comments_open() ) : ?>
    2732                                <div class="comments-link">
    2833                                        <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
    2934                                </div><!-- .comments-link -->
    3035                        <?php endif; // comments_open() ?>
     36
    3137                </header><!-- .entry-header -->
    3238
    3339                <?php if ( is_search() ) : // Only display Excerpts for Search ?>
    34                 <div class="entry-summary">
    35                         <?php the_excerpt(); ?>
    36                 </div><!-- .entry-summary -->
     40                        <div class="entry-summary">
     41                                <?php the_excerpt(); ?>
     42                        </div><!-- .entry-summary -->
    3743                <?php else : ?>
    38                 <div class="entry-content">
    39                         <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
    40                         <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
    41                 </div><!-- .entry-content -->
     44                        <div class="entry-content">
     45                                <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
     46                                <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
     47                        </div><!-- .entry-content -->
    4248                <?php endif; ?>
    4349
    4450                <footer class="entry-meta">
     51
    4552                        <?php twentytwelve_entry_meta(); ?>
     53
    4654                        <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
     55
    4756                        <?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?>
     57
    4858                                <div class="author-info">
    4959                                        <div class="author-avatar">
    5060                                                <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ) ); ?>
    5161                                        </div><!-- .author-avatar -->
     62
    5263                                        <div class="author-description">
    5364                                                <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
     65
    5466                                                <p><?php the_author_meta( 'description' ); ?></p>
     67
    5568                                                <div class="author-link">
    5669                                                        <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
    5770                                                                <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentytwelve' ), get_the_author() ); ?>
     
    5972                                                </div><!-- .author-link -->
    6073                                        </div><!-- .author-description -->
    6174                                </div><!-- .author-info -->
     75
    6276                        <?php endif; ?>
     77
    6378                </footer><!-- .entry-meta -->
     79
    6480        </article><!-- #post -->
  • wp-content/themes/twentytwelve/content-page.php

     
    99?>
    1010
    1111        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12
    1213                <header class="entry-header">
    1314                        <h1 class="entry-title"><?php the_title(); ?></h1>
    14                 </header>
     15                </header><!-- .entry-header -->
    1516
    1617                <div class="entry-content">
    1718                        <?php the_content(); ?>
    1819                        <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
    1920                </div><!-- .entry-content -->
     21
    2022                <footer class="entry-meta">
    2123                        <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
    2224                </footer><!-- .entry-meta -->
     25
    2326        </article><!-- #post -->
  • wp-content/themes/twentytwelve/content-image.php

     
    99?>
    1010
    1111        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12
    1213                <div class="entry-content">
    1314                        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
    1415                </div><!-- .entry-content -->
     
    1617                <footer class="entry-meta">
    1718                        <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark">
    1819                                <h1><?php the_title(); ?></h1>
     20
    1921                                <h2><time class="entry-date" datetime="<?php echo esc_attr( get_the_date( 'c' ) ); ?>" pubdate><?php echo get_the_date(); ?></time></h2>
     22
    2023                                <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
    2124                        </a>
    2225                </footer><!-- .entry-meta -->
     26
    2327        </article><!-- #post -->
  • wp-content/themes/twentytwelve/content-status.php

     
    99?>
    1010
    1111        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12
    1213                <div class="entry-header">
    1314                        <header>
    1415                                <h1><?php the_author(); ?></h1>
    1516                                <h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a></h2>
    1617                        </header>
     18
    1719                        <?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentytwelve_status_avatar', '48' ) ); ?>
    1820                </div><!-- .entry-header -->
    1921
     
    2426                <footer class="entry-meta">
    2527                        <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
    2628                </footer><!-- .entry-meta -->
     29
    2730        </article><!-- #post -->
  • wp-content/themes/twentytwelve/content-quote.php

     
    99?>
    1010
    1111        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12
    1213                <div class="entry-content">
    1314                        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) ); ?>
    1415                </div><!-- .entry-content -->
     
    1718                        <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>
    1819                        <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
    1920                </footer><!-- .entry-meta -->
     21
    2022        </article><!-- #post -->