Guest User

Untitled

a guest
Dec 11th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.  
  5. <?php if (have_posts()) : ?>
  6.  
  7. <?php while (have_posts()) : the_post(); ?>
  8.  
  9. <div class="post">
  10. <div class="post-date"><span class="post-month"><?php the_time('M') ?></span> <span class="post-day"><?php the_time('j') ?></span></div>
  11. <div class="post-title">
  12. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  13. <span class="post-cat"><?php the_category(', ') ?></span>
  14. <span class="post-comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
  15. </div>
  16. <div class="entry">
  17. <?php the_content('Read the rest of this entry &raquo;'); ?>
  18. </div>
  19. </div>
  20.  
  21. <?php endwhile; ?>
  22.  
  23. <div class="navigation">
  24. <span class="previous-entries"><?php next_posts_link('Older Entries') ?></span>
  25. <span class="next-entries"><?php previous_posts_link('Newer Entries') ?></span>
  26. </div>
  27.  
  28. <?php else : ?>
  29.  
  30. <h2>Not Found</h2>
  31. <p>Sorry, but you are looking for something that isn't here.</p>
  32.  
  33. <?php endif; ?>
  34.  
  35. </div>
  36. <!--/content -->
  37. <?php get_sidebar(); ?>
  38. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment