Advertisement
Guest User

Untitled

a guest
Jul 13th, 2011
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="box">
  4.  
  5. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6. <div id="post-<?php the_ID(); ?>" class="post">
  7.  
  8. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  9. <div class="hrlineB"></div>
  10.  
  11. <div class="entry bags">
  12.  
  13. <div class="ger">
  14. By <?php the_author() ?> &bull; <?php the_category(', ') ?> &bull; <?php the_time('j M Y') ?>
  15. </div>
  16.  
  17.  
  18. <?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
  19. <div style="clear: both;"></div>
  20. <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. <?php comments_template(); ?>
  28. </div>
  29.  
  30.  
  31. <?php endwhile; endif; ?>
  32. <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
  33.  
  34. <div class="cell last bags">
  35. <?php get_sidebar(); ?>
  36. </div>
  37. </div>
  38. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement