Advertisement
Guest User

Untitled

a guest
Jun 29th, 2011
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="wrap">
  4. <div id="content-container">
  5. <div id="content">
  6. <div style="float:left">
  7. <?php get_sidebar(); ?>
  8. </div>
  9. <div class="post-container">
  10. <?php if (have_posts()) : ?>
  11. <?php while (have_posts()) : the_post(); ?>
  12. <div class="post" id="post-<?php the_ID(); ?>">
  13. <div class="posttop">
  14. <div id="date">
  15. <p class="month">
  16. <?php the_time('F'); ?>
  17. </p>
  18. <p class="day">
  19. <?php the_time('j'); ?>
  20. </p>
  21. </div>
  22.  
  23. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
  24. <?php the_title(); ?>
  25. </a></h2>
  26. <div class="postinfo"> Posted by
  27. <?php the_author(); ?>
  28. <?php edit_post_link('Edit', ' &#124; ', ''); ?>
  29.  
  30. ,
  31. <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
  32. </div>
  33.  
  34. </div>
  35. <div class="entry">
  36. <?php the_content('Read the rest of this entry &raquo;'); ?>
  37. </div>
  38. <div class="postbottom">
  39. <div class="metainf">Filled Under:
  40. <?php the_category(', ') ?>
  41. </div>
  42. <div class="commentinf">
  43. <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
  44. </div>
  45. </div>
  46. </div>
  47. <?php endwhile; ?>
  48. <?php include (TEMPLATEPATH . '/navoptions.php'); ?>
  49. <?php else : ?>
  50. <h2>Not Found</h2>
  51. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  52. <?php endif; ?>
  53. </div>
  54. </div>
  55. <div class="bgbottom"></div>
  56. </div>
  57. </div>
  58. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement