Advertisement
Guest User

Untitled

a guest
Jul 15th, 2011
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php get_sidebar(); ?>
  4. <div id="content-top">
  5. <div id="roundc-tl">
  6. <div id="roundc-tr">
  7. </div>
  8. </div>
  9. </div>
  10.  
  11. <div id="content-container">
  12. <div id="content-area">
  13.  
  14. <?php if (have_posts()) : ?>
  15. <?php while (have_posts()) : the_post(); ?>
  16. <div class="theposts">
  17. <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?><?php if(is_sticky()) { echo " [Sticky]";} ?></a></h2>
  18. <div class="postinfo">
  19. <span class="theauthor">By <?php the_author_posts_link(); ?></span>
  20. <span class="subdate">On <?php the_time('F j, Y'); ?></span>
  21. <span class="catag">Under <?php the_category(', '); ?></span>
  22. </div>
  23. <div class="edit-comm">
  24. <span class="editentry"><?php edit_post_link('(Edit)', '', ''); ?></span>
  25. <span class="commresponse"><a href="<?php the_permalink() ?>#respond">Response</a></span>
  26. </div>
  27. <?php the_content('Read the rest of this entry &raquo;'); ?>
  28. <p>
  29. <?php
  30. wp_link_pages('before=&after=&next_or_number=next&previouspagelink=previous&nextpagelink=&nbsp');
  31. wp_link_pages('before=&after=&next_or_number=number');
  32. echo "&nbsp;";
  33. wp_link_pages('before=&after=&next_or_number=next&previouspagelink=&nbsp&nextpagelink=next');
  34. ?>
  35. </p>
  36. <p><?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
  37. <span class="postag">Tags: <?php the_tags('') ?></span>
  38. <?php comments_template(); // Get wp-comments.php template ?>
  39. </div>
  40. <?php endwhile; ?>
  41. <?php else : ?>
  42. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
  43. <div><?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?></div>
  44. <div class="bottom-paging">
  45. <span class="pagingnavright">&nbsp;<?php next_posts_link() ?></span>
  46. <span class="pagingnavleft">&nbsp;<?php previous_posts_link() ?></span>
  47. </div>
  48. </div>
  49. </div>
  50.  
  51. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement