Changeset 2205 for trunk/bp-themes/bp-default/archive.php
- Timestamp:
- 12/18/2009 02:59:39 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/bp-themes/bp-default/archive.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/archive.php
r2170 r2205 8 8 <div class="page" id="blog-archives"> 9 9 10 <h2 class="pagetitle"><?php _e( 'Blog', 'buddypress' )?></h2>10 <h2 class="pagetitle"><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h2> 11 11 12 12 <?php if ( have_posts() ) : ?> 13 14 <h3><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h3>15 13 16 14 <div class="navigation"> … … 25 23 <?php do_action( 'bp_before_blog_post' ) ?> 26 24 27 <div class="post" >25 <div class="post" id="post-<?php the_ID(); ?>"> 28 26 29 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title(); ?>"><?php the_title(); ?></a></h3> 30 <small><?php the_time('F j, Y') ?></small> 31 32 <div class="entry"> 33 <?php the_content() ?> 27 <div class="author-box"> 28 <?php echo get_avatar( get_the_author_email(), '50' ); ?> 29 <p><?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 34 30 </div> 35 31 36 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?> <?php comments_popup_link( __( 'No Comments »', 'buddypress' ), __( '1 Comment »', 'buddypress' ), __( '% Comments »', 'buddypress' ) ); ?></p> 32 <div class="post-content"> 33 <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> 34 35 <p class="date"><?php the_time('F j, Y') ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p> 36 37 <div class="entry"> 38 <?php the_content( __( 'Read the rest of this entry »', 'buddypress' ) ); ?> 39 </div> 40 41 <p class="postmetadata"><span class="tags"><?php the_tags( __( 'Tags: ', 'buddypress' ), ', ', '<br />'); ?></span> <span class="comments"><?php comments_popup_link( __( 'No Comments »', 'buddypress' ), __( '1 Comment »', 'buddypress' ), __( '% Comments »', 'buddypress' ) ); ?></span></p> 42 </div> 37 43 38 44 </div>
Note: See TracChangeset
for help on using the changeset viewer.