Advertisement
Guest User

johnburn

a guest
Jul 22nd, 2010
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.54 KB | None | 0 0
  1. <?php get_header();?>
  2.  
  3. <div id="content">
  4.  
  5.     <div id="contentleft">
  6.    
  7.         <div class="postarea">
  8.    
  9.         <?php include(TEMPLATEPATH."/breadcrumb.php");?>
  10.            
  11.             <?php if(have_posts()):while(have_posts()):the_post();?>
  12.             <h1><a href="<?php the_permalink()?>" rel="bookmark"><?php the_title();?></a></h1>
  13.            
  14.             <div class="date">
  15.            
  16.                 <div class="dateleft">
  17.                     <p><span class="time"><?php the_time('F j, Y');?></span> <?php _e("by",'studiopress');?> <?php the_author_posts_link();?> &nbsp;<?php edit_post_link(__('(Edit)','studiopress'),'','');?> <br /> <?php _e("Filed under",'studiopress');?> <?php the_category(', ')?></p>
  18.                 </div>
  19.                
  20.                 <div class="dateright">
  21.                     <p><span class="icomment"><a href="<?php the_permalink();?>#comments"><?php comments_number(__('Leave a Comment','studiopress'),__('1 Comment','studiopress'),__('% Comments','studiopress'));?></a></span></p>
  22.                 </div>
  23.                
  24.             </div>
  25.            
  26.             <div class="clear"></div>
  27.        
  28.             <?php the_excerpt();?><div class="clear"></div>
  29.            
  30.             <div class="postmeta2">
  31.                 <p><span class="tags"><?php _e("Tags",'studiopress');?>: <?php the_tags('')?></span></p>
  32.             </div>
  33.            
  34.             <?php endwhile;
  35. else:?>
  36.            
  37.             <p><?php _e('Sorry, no posts matched your criteria.','studiopress');?></p><?php endif;?>
  38.             <p><?php posts_nav_link(' &#8212; ',__('&laquo; Previous Page','studiopress'),__('Next Page &raquo;','studiopress'));?></p>
  39.            
  40.         </div>
  41.                
  42.     </div>
  43.    
  44. <?php include(TEMPLATEPATH."/sidebar.php");?>
  45.        
  46. </div>
  47.  
  48. <?php // The main column ends?>
  49.  
  50. <?php get_footer();?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement