Advertisement
Guest User

Untitled

a guest
Oct 6th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4. <?php if (have_posts()) : ?>
  5.  
  6. <?php while (have_posts()) : the_post(); ?>
  7. <div class="single" id="post-<?php the_ID(); ?>">
  8. <div class="title">
  9.  
  10. <h2 class="title entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  11. <div class="date updated"><span class="clock"> On <?php the_time('F - j - Y'); ?></span>
  12.  
  13. </div>
  14.  
  15. </div>
  16.  
  17.  
  18. <div class="cover">
  19. <div class="entry">
  20. <?php the_content('Read the rest of this entry &raquo;'); ?>
  21.  
  22.  
  23. <div class="clear"></div>
  24.  
  25. <?php include (TEMPLATEPATH . '/ad2.php'); ?>
  26. </div>
  27. </div>
  28.  
  29.  
  30.  
  31.  
  32.  
  33. <div class="singleinfo">
  34. <div class="category"><?php the_category(', '); ?> </div>
  35.  
  36. </div>
  37.  
  38. </div>
  39. <?php comments_template(); ?>
  40. <?php endwhile; else: ?>
  41.  
  42. <h1 class="title">Not Found</h1>
  43. <p>I'm Sorry, YOU are looking for something that ISN'T HERE. </p>
  44.  
  45. <?php endif; ?>
  46.  
  47. </div>
  48. <?php get_sidebar(); ?>
  49. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement