Ticket #4900: buddypress.php
File buddypress.php, 421 bytes (added by , 11 years ago) |
---|
Line | |
---|---|
1 | <?php |
2 | /** |
3 | * BuddyPress Template for P2 |
4 | * |
5 | * @package P2 |
6 | */ |
7 | ?> |
8 | <?php get_header(); ?> |
9 | |
10 | <div class="sleeve_main"> |
11 | |
12 | <div id="main"> |
13 | <?php if ( have_posts() ) : ?> |
14 | |
15 | <?php while ( have_posts() ) : the_post(); ?> |
16 | |
17 | <h2><?php the_title(); ?></h2> |
18 | |
19 | <?php the_content(); ?> |
20 | |
21 | <?php endwhile; ?> |
22 | |
23 | <?php endif; ?> |
24 | |
25 | </div> <!-- main --> |
26 | |
27 | </div> <!-- sleeve --> |
28 | |
29 | <?php get_footer(); ?> |