Advertisement
Guest User

index

a guest
Apr 6th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1.  <?php get_header(); ?>
  2.   <div id="contentwrap">
  3.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4.  
  5.  
  6.  
  7. <?php get_sidebar(); ?>
  8.        
  9.         <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  10.  
  11.             <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
  12.  
  13.             <?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>
  14.  
  15.             <div class="entry">
  16.                 <?php the_content(); ?>
  17.             </div>
  18.  
  19.             <div class="postmetadata">
  20.                 <?php the_tags('Tags: ', ', ', '<br />'); ?>
  21.                 Posted in <?php the_category(', ') ?> |
  22.                 <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>
  23.             </div>
  24.  
  25.         </div>
  26.        
  27.        
  28.  
  29.  
  30.     <?php endwhile; ?>
  31.  
  32.     <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
  33.  
  34.     <?php else : ?>
  35.  
  36.         <h2>Not Found</h2>
  37.  
  38.     <?php endif; ?>
  39.    
  40. </div>
  41.  
  42.  
  43. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement