Advertisement
dailymon

index

Sep 13th, 2011
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <!-- Start: Left Panel -->
  4. <div class="leftPanel">
  5.  
  6. <?php if (have_posts()) : ?>
  7.  
  8. <?php while (have_posts()) : the_post(); ?>
  9. <!-- Start: Post -->
  10. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  12. <p class="postmeta">Posted on <a href="<?php the_permalink() ?>"><?php the_time( get_option( 'date_format' ) ) ?></a> by <?php the_author() ?></p>
  13. <div class="entryContent">
  14. <?php the_post_thumbnail(); ?>
  15. <?php the_excerpt(); ?>
  16. </div>
  17. <p>Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> </p>
  18. </div>
  19. <div class="clear"></div>
  20. <!-- End: Post -->
  21. <?php endwhile; ?>
  22.  
  23. <div class="navigation">
  24. <div class="alignleft"><?php next_posts_link('&laquo; Previous Posts') ?></div>
  25. <div class="alignright"><?php previous_posts_link('Next posts &raquo;') ?></div>
  26. </div>
  27.  
  28. <?php else : ?>
  29.  
  30. <h2 class="center">Not Found</h2>
  31. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  32. <?php get_template_part('searchform'); ?>
  33.  
  34. <?php endif; ?>
  35. </div>
  36. <!-- End: Left Panel -->
  37. <!-- Start: Right Panel -->
  38. <div class="rightPan">
  39. <?php get_sidebar(); ?>
  40. </div>
  41. <!-- End: Right Panel -->
  42. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement