Advertisement
Guest User

Untitled

a guest
Oct 4th, 2010
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="wrapper"><!-- This wrapper class appears only on Page and Single Post pages. -->
  4. <div class="narrowcolumnwrapper"><div class="narrowcolumn">
  5.  
  6. <div class="content">
  7.  
  8. <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
  9.  
  10. <div class="post" id="post-<?php the_ID(); ?>">
  11.  
  12. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  13.  
  14. <div class="postinfo">
  15. <?php _e('Posted on'); ?> <span class="postdate"><?php the_time('F jS, Y') ?></span> <?php _e('by'); ?> <?php the_author() ?> <?php edit_post_link('Edit', ' &#124; ', ''); ?>
  16. </div>
  17.  
  18. <div class="entry">
  19.  
  20. <?php the_content(); ?>
  21. <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
  22.  
  23. <p class="postinfo">
  24. <?php _e('Filed under&#58;'); ?> <?php the_category(', ') ?>
  25. </p>
  26.  
  27. <!--
  28. <?php trackback_rdf(); ?>
  29. -->
  30. </div>
  31. </div>
  32.  
  33. <?php endwhile; ?>
  34.  
  35. <?php include (TEMPLATEPATH . '/browse.php'); ?>
  36.  
  37. <?php else : ?>
  38.  
  39. <div class="post">
  40.  
  41. <h2><?php _e('Not Found'); ?></h2>
  42.  
  43. <div class="entry">
  44. <p><?php _e('Sorry, but you are looking for something that isn&#39;t here.'); ?></p>
  45. </div>
  46.  
  47. </div>
  48.  
  49. <?php endif; ?>
  50.  
  51. </div><!-- End content -->
  52.  
  53. </div></div><!-- End narrowcolumnwrapper and narrowcolumn classes -->
  54.  
  55.  
  56. <!-- Start Comments Template -->
  57.  
  58. <div class="narrowcolumnwrapper"><div class="narrowcolumn">
  59.  
  60. <div class="content">
  61.  
  62. <div class="post">
  63.  
  64. <?php comments_template(); ?>
  65.  
  66. </div>
  67.  
  68. </div><!-- End content for comments template -->
  69.  
  70. </div></div><!-- End narrowcolumnwrapper and narrowcolumn classes for comments template -->
  71. </div><!-- End wrapper class -->
  72.  
  73. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement