Advertisement
Guest User

Untitled

a guest
Dec 28th, 2011
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1.     <?php get_header(); ?>
  2.  
  3.         <div id="main">
  4.  
  5.             <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  6.  
  7.             <div class="post">
  8.                 <?php if( has_post_thumbnail() ) : ?>
  9.                    
  10.                 <?php endif ?>
  11.  
  12.                 <h2 class="post-title"><?php the_title(); ?></h2>
  13.  
  14.                 <em class="meta">
  15.                     <?php comments_popup_link( __( '0 Comments', 'huddle' ), __( '1 Comment', 'huddle' ), __( '% Comments', 'huddle' ) ); ?>   
  16.                 </em>
  17.  
  18.                 <div class="post-content">
  19.                     <?php the_content(); ?>
  20.                     <?php the_tags(); ?>
  21.                 </div>
  22.             </div>
  23.  
  24.         <?php endwhile; endif; ?>
  25.  
  26.         <?php comments_template(); ?>
  27.  
  28.         </div>
  29.        
  30.     <?php get_sidebar('business directory'); ?>
  31.    
  32.     <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement