mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@2284 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
38 lines
958 B
PHP
38 lines
958 B
PHP
<?php get_header() ?>
|
|
|
|
<div id="content">
|
|
<div class="padder">
|
|
|
|
<?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 →</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><!-- .page -->
|
|
|
|
<?php do_action( 'bp_after_blog_page' ) ?>
|
|
|
|
</div><!-- .padder -->
|
|
</div><!-- #content -->
|
|
|
|
<?php locate_template( array( 'sidebar.php' ), true ) ?>
|
|
|
|
<?php get_footer(); ?>
|