Changeset 4126
- Timestamp:
- 03/12/2011 12:57:28 PM (14 years ago)
- Location:
- trunk/bp-themes/bp-default
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/_inc/css/default.css
r3955 r4126 2380 2380 } 2381 2381 2382 #nav-below { 2383 margin: 0 0; 2384 padding: 0 0; 2385 } 2382 2386 2383 2387 /* > Footer -
trunk/bp-themes/bp-default/archive.php
r3771 r4126 12 12 <?php if ( have_posts() ) : ?> 13 13 14 <div class="navigation">14 <div id="nav-above" class="navigation"> 15 15 16 16 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> … … 48 48 <?php endwhile; ?> 49 49 50 <div class="navigation">50 <div id="nav-below" class="navigation"> 51 51 52 52 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> -
trunk/bp-themes/bp-default/index.php
r3771 r4126 39 39 <?php endwhile; ?> 40 40 41 <div class="navigation">41 <div id="nav-below" class="navigation"> 42 42 43 43 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> -
trunk/bp-themes/bp-default/search.php
r3771 r4126 14 14 <h3 class="pagetitle"><?php _e( 'Search Results', 'buddypress' ) ?></h3> 15 15 16 <div class="navigation">16 <div id="nav-above" class="navigation"> 17 17 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 18 18 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> … … 48 48 <?php endwhile; ?> 49 49 50 <div class="navigation">50 <div id="nav-below" class="navigation"> 51 51 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div> 52 52 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div> -
trunk/bp-themes/bp-default/single.php
r3771 r4126 4 4 <div class="padder"> 5 5 6 <?php do_action( 'bp_before_blog_single_post' ) ?>6 <?php do_action( 'bp_before_blog_single_post' ) ?> 7 7 8 <div class="page" id="blog-single" role="main">8 <div class="page" id="blog-single" role="main"> 9 9 10 10 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 11 12 <div class="item-options">13 14 <div class="alignleft"><?php next_posts_link( __( '← Previous Entries', 'buddypress' ) ) ?></div>15 <div class="alignright"><?php previous_posts_link( __( 'Next Entries →', 'buddypress' ) ) ?></div>16 17 </div>18 11 19 12 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> … … 36 29 37 30 <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> 31 32 <div class="alignleft"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'buddypress' ) . '</span> %title' ); ?></div> 33 <div class="alignright"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'buddypress' ) . '</span>' ); ?></div> 38 34 </div> 39 35
Note: See TracChangeset
for help on using the changeset viewer.