Advertisement
Guest User

Untitled

a guest
Dec 8th, 2011
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: blog
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8. <?php is_home(); ?>
  9. <div id="content" class="narrowcolumn">
  10.  
  11. <?php if (have_posts()) : ?>
  12. <?php while (have_posts()) : the_post(); ?>
  13. <div class="post">
  14. <h2 id="post-<?php the_ID(); ?>">
  15. <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  16. <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
  17. </div>
  18. <?php endwhile; ?>
  19. <div class="navigation">
  20. <div class="alignleft">
  21. <?php posts_nav_link('','','&laquo; Previous Entries') ?>
  22. </div>
  23. <div class="alignright">
  24. <?php posts_nav_link('','Next Entries &raquo;','') ?>
  25. </div>
  26. </div>
  27. <?php else : ?>
  28. <h2 class="center">Not Found</h2>
  29. <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
  30. <?php endif; ?>
  31. </div>
  32. </div>
  33.  
  34. </div>
  35.  
  36. <?php get_footer(); ?>
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement