buddypress/bp-themes/bp-sn-parent/page.php
Andy Peatling 6197ade5cf More » and « fixes.
git-svn-id: https://buddypress.svn.wordpress.org/trunk@2278 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2010-01-09 10:01:21 +00:00

36 lines
867 B
PHP

<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php do_action( 'bp_before_blog_page' ) ?>
<div class="page" id="blog-page">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2 class="pagetitle"><?php the_title(); ?></h2>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entry">
<?php the_content( __( '<p class="serif">Read the rest of this page &rarr;</p>', 'buddypress' ) ); ?>
<?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p>', '</p>'); ?>
</div>
</div>
<?php endwhile; endif; ?>
</div>
<?php do_action( 'bp_after_blog_page' ) ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>