Guest User

Untitled

a guest
Feb 2nd, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 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.  
  15. <div class="post" id="post-<?php the_ID(); ?>">
  16. <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  17.  
  18. <div class="entry">
  19. <?php the_content(); ?>
  20. </div><!-- end .entry -->
  21.  
  22. <div class="postdata">Posted at <?php the_time('F jS, Y') ?>. <!-- by <?php the_author() ?> --> <?php edit_post_link('Edit', ' / ', ''); ?></div>
  23. </div><!-- end .post -->
  24.  
  25. <div class="post"><?php comments_template(); ?></div>
  26.  
  27. <?php endwhile; ?>
  28.  
  29. <?php else : ?>
  30. <div class="post">
  31. <div class="title"><h2>Not Found</h2></div>
  32. <p>Sorry, but you are looking for something that isn't here.</p>
  33. </div>
  34.  
  35. <?php endif; ?>
  36. </div><!-- end #leftcolumn -->
  37.  
  38. <?php get_sidebar(); ?>
  39.  
  40. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment