Advertisement
Guest User

Untitled

a guest
Oct 10th, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php include(TEMPLATEPATH . '/includes/breadcrumbs.php'); ?>
  4.  
  5. <div id="content" class="clearfix">
  6. <?php if (get_option('thestyle_integration_single_top') <> '' && get_option('thestyle_integrate_singletop_enable') == 'on') echo(get_option('thestyle_integration_single_top')); ?>
  7. <div id="left-area">
  8. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  9. <div id="post" class="post">
  10. <div class="post-content clearfix">
  11. <div class="info-panel">
  12. <?php include(TEMPLATEPATH . '/includes/infopanel.php'); ?>
  13. </div> <!-- end .info-panel -->
  14.  
  15. <div class="post-text">
  16. <h1 class="title"><?php the_title(); ?></h1>
  17.  
  18. <div class="hr"></div>
  19.  
  20. <?php the_content(); ?>
  21.  
  22. <?php wp_link_pages(array('before' => '<p><strong>'.esc_html__('Pages','TheStyle').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  23. <?php edit_post_link(esc_html__('Edit this page','TheStyle')); ?>
  24.  
  25. <?php if (get_option('thestyle_integration_single_bottom') <> '' && get_option('thestyle_integrate_singlebottom_enable') == 'on') echo(get_option('thestyle_integration_single_bottom')); ?>
  26.  
  27. <?php if (get_option('thestyle_468_enable') == 'on') { ?>
  28. <?php if(get_option('thestyle_468_adsense') <> '') echo(get_option('thestyle_468_adsense'));
  29. else { ?>
  30. <a href="<?php echo esc_url(get_option('thestyle_468_url')); ?>"><img src="<?php echo esc_url(get_option('thestyle_468_image')); ?>" alt="468 ad" class="foursixeight" /></a>
  31. <?php } ?>
  32. <?php } ?>
  33. </div> <!-- .post-text -->
  34. </div> <!-- .post-content -->
  35. </div> <!-- #post -->
  36.  
  37. <?php if (get_option('thestyle_show_pagescomments') == 'on') comments_template('', true); ?>
  38. <?php endwhile; endif; ?>
  39. </div> <!-- #left-area -->
  40. <?php get_sidebar(); ?>
  41. </div> <!-- #content -->
  42.  
  43. <div id="content-bottom-bg"></div>
  44.  
  45. <?php get_footer(); ?>
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement