Advertisement
Guest User

Otto

a guest
Aug 14th, 2009
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.58 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; else: ?>
  35.            
  36.             <p><?php _e('Sorry, no posts matched your criteria.', 'studiopress'); ?></p><?php endif; ?>
  37.             <p><?php posts_nav_link(' &#8212; ', __('&laquo; Previous Page', 'studiopress'), __('Next Page &raquo;', 'studiopress')); ?></p>
  38.            
  39.         </div>
  40.                
  41.     </div>
  42.    
  43. <?php include(TEMPLATEPATH."/sidebar.php");?>
  44.        
  45. </div>
  46.  
  47. <?php // The main column ends  ?>
  48.  
  49. <?php get_footer(); ?><?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement