Advertisement
Guest User

Untitled

a guest
Sep 12th, 2011
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.  
  5. <?php if (have_posts()) : ?>
  6. <?php while (have_posts()) : the_post(); ?>
  7.  
  8. <div <?php post_class(); ?>>
  9. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  10.  
  11. <?php if (has_post_thumbnail() ) { ?>
  12. <a href="<?php the_permalink(); ?>" class="post-thumbnail"><?php the_post_thumbnail (): ?></a>
  13. <?php } else { ?>
  14. <a href="<?php the_permalink(); ?>" class="post-thumbnail"><img src="<?php bloginfo('template_url'); ?>
  15. <?php } ?>"
  16.  
  17. <?php the_content(''); ?>
  18. <div class="post-text">
  19. <ul>
  20. <li class="date"><?php the_time('jS F Y'); ?> </li>
  21. <li class="category">Posted in <a href="<?php the_category(); ?>"></a></li>
  22. <li class="comment-count"><a href="<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>"</a></li>
  23. <li class="read-more"><a href="<?php the_permalink(); ?>">Continue reading</a></li>
  24. </ul>
  25. </div><!--end post-text-->
  26. </div><!--end featured-post-->
  27.  
  28. <?php endwhile; ?>
  29.  
  30. <?php comments_template(); ?>
  31.  
  32. <div id="pagenav">
  33. <div class="pagenav">
  34. <ul>
  35. <li><a href="#" class="prevnext disablelink">« previous<?php next_posts_link ('Older articles'); ?></a></li>
  36. <li><a href="#" class="currentpage">1</a></li>
  37. <li><a href="#">2</a></li>
  38. <li><a href="#">3</a></li>
  39. <li><a href="#">4</a></li>
  40. <li><a href="#" class="prevnext">next »<?php previous_posts_link ('Newer articles'); ?></a></li>
  41. </ul>
  42. </div><!--end pagenav-->
  43. </div>
  44.  
  45. <?php else : ?>
  46. <div class="nothing">
  47. <h2>Nothing Found</h2>
  48. <p>Sorry, nothing here.</p>
  49. <p><a href="<?php echo get_option ('blog'); ?>">Return to blog page</a></p>
  50. </div>
  51. <?php endif; ?>
  52.  
  53. </div><!--end content-->
  54.  
  55. <?php get_sidebar(); ?>
  56. </div><!--end container-->
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement