Advertisement
Guest User

single.php

a guest
Jan 14th, 2012
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <?php get_header() ;?>
  2.  
  3. <div id="content">
  4. <div class="padder">
  5.  
  6. <div id="item-header">
  7. <?php locate_template( array( 'members/single/member-header.php' ), true ) ?>
  8. </div>
  9.  
  10. <div id="item-nav">
  11. <div class="item-list-tabs no-ajax" id="object-nav">
  12. <ul>
  13. <?php bp_get_displayed_user_nav() ?>
  14. </ul>
  15. </div>
  16. </div>
  17.  
  18. <div id="sidebar-squeeze">
  19. <div id="main-column">
  20.  
  21. <div id="item-body">
  22.  
  23. <div class="item-list-tabs no-ajax" id="subnav">
  24. <ul>
  25. <?php bp_get_options_nav() ?>
  26. </ul>
  27. </div>
  28.  
  29. <?php if (bp_album_has_pictures() ) : bp_album_the_picture();?>
  30.  
  31. <div class="picture-single activity">
  32. <h3><?php bp_album_picture_title() ?></h3>
  33.  
  34. <div class="picture-outer-container">
  35. <div class="picture-inner-container">
  36. <div class="picture-middle">
  37. <img src="<?php bp_album_picture_middle_url() ?>" />
  38. <?php bp_album_adjacent_links() ?>
  39. </div>
  40. </div>
  41. </div>
  42.  
  43. <p class="picture-description"><?php bp_album_picture_desc() ?></p>
  44. <p class="picture-meta">
  45. <?php bp_album_picture_edit_link() ?>
  46. <?php bp_album_picture_delete_link() ?></p>
  47.  
  48. <?php bp_album_load_subtemplate( apply_filters( 'bp_album_template_screen_comments', 'album/comments' ) ); ?>
  49. </div>
  50.  
  51. <?php else : ?>
  52.  
  53. <div id="message" class="info">
  54. <p><?php echo bp_word_or_name( __( "This url is not valid.", 'bp-album' ), __( "Either this url is not valid or picture has restricted access.", 'bp-album' ),false,false ) ?></p>
  55. </div>
  56.  
  57. <?php endif; ?>
  58.  
  59. </div><!-- #item-body -->
  60.  
  61. </div><!-- #main-column -->
  62. <?php get_sidebar( 'buddypress' ); ?>
  63. </div><!-- #sidebar-squeeze -->
  64.  
  65. </div><!-- .padder -->
  66. </div><!-- #content -->
  67.  
  68. <?php get_footer( 'buddypress' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement