Advertisement
kiddie159

pekaboo page

Apr 20th, 2012
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <!--Main begin-->
  3. <div id="main" class="round_8 clearfix">
  4.  
  5. <!-- Breadcrumb begin -->
  6. <div class="pad-left-10">
  7. <?php if (function_exists('pkb_breadcrumbs')) pkb_breadcrumbs(); ?>
  8.  
  9. </div>
  10. <!-- Breadcrumb end -->
  11.  
  12. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  13.  
  14. <!-- Page title begin -->
  15. <div class="page_title round_6">
  16. <h1 class="replace">
  17. <?php if ( is_front_page() ) { ?>
  18. <?php the_title(); ?>
  19. <?php } else { ?>
  20. <?php the_title(); ?>
  21. <?php } ?>
  22. </h1>
  23. </div>
  24. <!-- Page title end -->
  25.  
  26. <!-- Content begin-->
  27. <div id="content" class="left">
  28. <?php if ( (has_post_thumbnail() && function_exists('has_post_thumbnail'))) { ?>
  29. <div class="landing_image"><a href="<?php the_permalink() ?>"><?php the_post_thumbnail( 'landing-image', array('class' => 'shadow') ); ?> </a></div>
  30. <?php } ?>
  31.  
  32. <?php the_content(); ?>
  33. <?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'peekaboo' ), 'after' => '' ) ); ?>
  34. <div class="clear">&nbsp;</div>
  35.  
  36. <?php endwhile; ?>
  37. </div>
  38. <!-- Content end-->
  39.  
  40. <!-- Sidebar begin-->
  41. <div id="sidebar" class="left">
  42. <?php get_sidebar(); ?>
  43. </div>
  44. <!-- Sidebar end-->
  45. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement