Changeset 3810 for trunk/bp-themes/bp-default/blogs/create.php
- Timestamp:
- 01/22/2011 10:13:25 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/blogs/create.php
r3771 r3810 1 <?php get_header() ?>1 <?php 2 2 3 <?php do_action( 'bp_before_directory_blogs_content' ) ?> 3 /** 4 * BuddyPress - Create Blog 5 * 6 * @package BuddyPress 7 * @subpackage bp-default 8 */ 9 10 ?> 11 12 <?php get_header(); ?> 13 14 <?php do_action( 'bp_before_directory_blogs_content' ); ?> 4 15 5 16 <div id="content"> 6 17 <div class="padder" role="main"> 7 18 8 <?php do_action( 'template_notices' ) ?>19 <?php do_action( 'template_notices' ); ?> 9 20 10 <h3><?php _e( 'Create a Blog', 'buddypress' ) ?> <a class="button" href="<?php echo bp_get_root_domain() . '/' . BP_BLOGS_SLUG . '/' ?>"><?php _e( 'Blogs Directory', 'buddypress' )?></a></h3>21 <h3><?php _e( 'Create a Blog', 'buddypress' ); ?> <a class="button" href="<?php echo trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ) ?>"><?php _e( 'Blogs Directory', 'buddypress' ); ?></a></h3> 11 22 12 <?php do_action( 'bp_before_create_blog_content' ) ?>23 <?php do_action( 'bp_before_create_blog_content' ); ?> 13 24 14 25 <?php if ( bp_blog_signup_enabled() ) : ?> 15 26 16 <?php bp_show_blog_signup_form() ?>27 <?php bp_show_blog_signup_form(); ?> 17 28 18 29 <?php else: ?> … … 24 35 <?php endif; ?> 25 36 26 <?php do_action( 'bp_after_create_blog_content' ) ?>37 <?php do_action( 'bp_after_create_blog_content' ); ?> 27 38 28 39 </div><!-- .padder --> 29 40 </div><!-- #content --> 30 41 31 <?php get_sidebar()?>42 <?php do_action( 'bp_after_directory_blogs_content' ); ?> 32 43 33 <?php do_action( 'bp_after_directory_blogs_content' ) ?> 44 <?php get_sidebar(); ?> 45 <?php get_footer(); ?> 34 46 35 <?php get_footer() ?>36
Note: See TracChangeset
for help on using the changeset viewer.