Guest User

Untitled

a guest
Feb 2nd, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Hello_D
  5. */
  6.  
  7. get_header(); ?>
  8.  
  9. <div id="leftcolumn">
  10.  
  11. <?php if (have_posts()) : ?>
  12.  
  13. <?php while (have_posts()) : the_post(); ?>
  14. <div class="post" id="post-<?php the_ID(); ?>">
  15. <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  16.  
  17. <div class="entry">
  18. <?php the_content('Read More...'); ?>
  19. </div><!-- end .entry -->
  20.  
  21. <div class="postdata">Posted in <?php the_category(', ') ?> at <?php the_time('F jS, Y') ?>. <!-- by <?php the_author() ?> --> <?php edit_post_link('Edit', ' / ', ' / '); ?> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>.</div>
  22. </div><!-- end .post -->
  23.  
  24. <?php endwhile; ?>
  25.  
  26. <div class="pagers clearfix">
  27. <p class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></p>
  28. <p class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></p>
  29. </div>
  30.  
  31. <?php else : ?>
  32.  
  33. <div class="post">
  34. <div class="title"><h2>Not Found</h2></div>
  35. <p>Sorry, but you are looking for something that isn't here.</p>
  36. </div>
  37.  
  38. <?php endif; ?>
  39. </div><!-- end #leftcolumn -->
  40.  
  41. <?php get_sidebar(); ?>
  42.  
  43. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment