View difference between Paste ID: TvrF53DR and gAUN3ZWH
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(); ?>
13+
			<div id="main">
14
				<?php while ( have_posts() ) : the_post(); ?>
15-
				<h3><?php the_title(); ?></h3>
15+
					<h3><?php the_title(); ?></h3>
16
					<?php the_content(); ?>
17-
				<?php the_content(); ?>
17+
				<?php endwhile; // end of the loop. ?>
18
			</div>
19-
			<?php endwhile; // end of the loop. ?>
19+
20
			<?php get_sidebar( 'buddypress' ); ?>
21
22
		</div><!-- .padder -->
23
	</div><!-- #content -->
24
25-
<?php get_sidebar( 'buddypress' ); ?>
25+