Advertisement
Guest User

index

a guest
Feb 7th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php get_sidebar(1); ?>
  4. <div class="column-center">
  5. <div class="indent-center">
  6.  
  7.  
  8. <?php if (have_posts()) : ?>
  9.  
  10. <?php while (have_posts()) : the_post(); ?>
  11.  
  12. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  13. <div class="title">
  14. <div class="bg-hl">
  15. <div class="bg-hr">
  16. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  17. </div>
  18. </div>
  19. <div class="date">
  20. <?php the_time('l, F j, Y') ?>@ <?php the_time('g:i A') ?>
  21. </div>
  22. <div class="author">
  23. posted by <?php the_author_link() ?>
  24. </div>
  25. </div>
  26. <div class="text-box">
  27. <div class="ind">
  28. <?php the_content(''); ?>
  29. </div>
  30. </div>
  31. <div class="comments">
  32. <?php comments_popup_link('0 Comments', '(1 Comment )', '% Comments '); ?><?php edit_post_link('Edit', ' &nbsp;|&nbsp; ', ''); ?>
  33. </div>
  34. </div>
  35.  
  36. <?php endwhile; ?>
  37.  
  38. <div class="navigation">
  39. <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
  40. <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
  41. <div class="clear"></div>
  42. </div>
  43.  
  44. <?php else : ?>
  45.  
  46. <h2 class="pagetitle">No posts found. Try a different search?</h2>
  47. <div class="search">
  48. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  49. </div>
  50.  
  51. <?php endif; ?>
  52.  
  53. </div>
  54. </div>
  55. <?php get_sidebar(2); ?>
  56.  
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement