Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 20th, 2010 | Syntax: None | Size: 1.63 KB | Hits: 207 | Expires: Never
Copy text to clipboard
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4.  
  5.         <div id="contentleft">
  6.        
  7.                 <div class="post">
  8.                
  9.                 <?php include(TEMPLATEPATH."/breadcrumb.php");?>
  10.                        
  11.                         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  12.                         <h1><?php the_title(); ?></h1>
  13.                        
  14.                         <div class="date">
  15.                                 <p><span class="time"><?php the_time('F j, Y'); ?></span> <?php _e("by", 'studiopress'); ?> <?php the_author_posts_link(); ?> &middot; <span class="icomment"><a rel="nofollow" href="<?php the_permalink(); ?>#respond"><?php comments_number(__('Leave a Comment', 'studiopress'), __('1 Comment', 'studiopress'), __('% Comments', 'studiopress')); ?></a></span>&nbsp;<?php edit_post_link(__('(Edit)', 'studiopress'), '', ''); ?></p>
  16.                         </div>
  17.                        
  18.                         <?php the_content(__('Read more', 'studiopress'));?><div class="clear"></div>
  19.                        
  20.                         <div class="postmeta">
  21.                 <p><?php _e("Filed under", 'studiopress'); ?> <?php the_category(', ') ?> &middot; <span class="tags"><?php _e("Tagged with", 'studiopress'); ?> <?php the_tags('') ?></span></p>
  22.                         </div>
  23.                                        
  24.                         <!--
  25.                         <?php trackback_rdf(); ?>
  26.                         -->
  27.                        
  28.                         <?php endwhile; else: ?>
  29.                        
  30.             <p><?php _e('Sorry, no posts matched your criteria.', 'studiopress'); ?></p><?php endif; ?>
  31.                        
  32.                 </div>
  33.        
  34.                 <?php if(get_theme_mod('468_post_ad') == 'Yes') { ?>
  35.             <div class="adblock">
  36.                 <?php echo stripslashes (get_theme_mod('468_post_code')); ?>
  37.             </div>
  38.         <?php } else { ?>
  39.         <?php } ?>
  40.                        
  41.                 <div class="comments">
  42.                         <?php comments_template('',true); ?>
  43.                 </div>
  44.                
  45.         </div>
  46.        
  47. <?php get_sidebar(); ?>
  48.                
  49. </div>
  50.  
  51. <?php get_footer(); ?>