View difference between Paste ID: gAUN3ZWH and XdTAFnM4
SHOW: | | - or go back to the newest paste.
1
<?php
2
/**
3
 * Template for all BuddyPress Pages
4
 *
5
 * @package BuddyPress
6
 * 
7
 */
8
get_header( 'buddypress' ); ?>
9
10
	<div id="content">
11
		<div class="padder">
12
13
			<?php while ( have_posts() ) : the_post(); ?>
14
15-
			<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
15+
16
17
				<?php the_content(); ?>
18
19
			<?php endwhile; // end of the loop. ?>
20
21
22
		</div><!-- .padder -->
23
	</div><!-- #content -->
24
25
<?php get_sidebar( 'buddypress' ); ?>
26
27
<?php get_footer( 'buddypress' ); ?>