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.                 <h3><?php the_title(); ?></h3>
  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' ); ?>