Guest User

Untitled

a guest
May 25th, 2018
96
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. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4.  
  5.  
  6.  
  7.  
  8.  
  9. <div id="main" class="grid_9 alpha">
  10.  
  11. <div class="entry">
  12.  
  13. <?php woo_image('width=478&noheight=true&class=thumbnail&link=img'); ?>
  14.  
  15. <h2 class="single"><?php the_title(); ?></h2>
  16.  
  17. <?php the_content(); ?>
  18.  
  19. <div class="navigation">
  20.  
  21. <div class="previous fl">
  22. <p><?php previous_post_link('%link') ?></p>
  23. </div>
  24.  
  25. <div class="next fr">
  26. <p><?php next_post_link('%link') ?></p>
  27. </div>
  28.  
  29. <div class="fix"></div>
  30.  
  31. </div>
  32.  
  33. </div><!-- / #entry -->
  34.  
  35. <?php comments_template(); ?>
  36.  
  37. </div><!-- / #main -->
  38.  
  39. <div class="grid_3">
  40.  
  41. <div class="post_meta">
  42.  
  43. <p style="margin-bottom:10px; padding:0 20px;"><strong><?php _e('Post Details',woothemes); ?></strong></p>
  44.  
  45. <p><span class="date"><?php the_time('F jS, Y') ?></span></p>
  46. <p><span class="details"><?php the_category(', ') ?></span></p>
  47. <p><span class="comments"><a href="#respond"><?php _e('Comment',woothemes); ?></a></span></p>
  48. <p><span class="edit"><?php edit_post_link(__('Edit Post'), ' ', ''); ?></span></p>
  49.  
  50. <div class="tags">
  51. <p><strong><?php _e('Post Tags',woothemes); ?></strong></p>
  52. <?php the_tags('', ', ', '<br />'); ?>
  53. </div>
  54.  
  55. </div>
  56.  
  57. <!-- Add you sidebar manual code here to show above the widgets -->
  58.  
  59. <?php if (function_exists('woo_sidebar') && woo_sidebar(2) ) ?>
  60.  
  61. <!-- Add you sidebar manual code here to show below the widgets -->
  62.  
  63. </div><!-- / #grid_3 -->
  64.  
  65. <?php endwhile; endif; ?>
  66.  
  67. <?php get_sidebar(); ?>
  68.  
  69. </div><!-- / #grid_16 -->
  70.  
  71. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment