Advertisement
Guest User

John Hobson

a guest
Mar 10th, 2008
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.66 KB | None | 0 0
  1. <?php endif; ?>
  2. <?php if (have_posts()) : ?>
  3.   <?php while (have_posts()) : the_post(); ?>
  4.     <div class="post" id="post-<?php the_ID(); ?>">
  5. <?php if (!is_page('home')) : ?>    
  6.       <h3><!--<img src="<?php bloginfo('stylesheet_directory'); ?>/images/document.gif" alt="" /> --><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  7. <?php endif; ?>      
  8.  
  9.     <?php if (!is_page()) : ?>
  10.       <small><img src="<?php bloginfo('stylesheet_directory'); ?>/images/timeicon.gif" alt="" /> <?php the_time('F jS, Y') ?> by <img src="<?php bloginfo('stylesheet_directory'); ?>/images/author.gif" alt="" /> <?php the_author() ?></small>
  11.     <?php endif; ?>
  12.  
  13.    <!-- <div class="entry"> -->
  14.       <?php the_content('Read the rest of this entry &raquo;'); ?>
  15.     <!--</div>-->
  16.    
  17.  
  18.       <?php if (!is_page()) : ?>
  19.         <p class="info">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?>  <img src="<?php bloginfo('stylesheet_directory'); ?>/images/comments.gif" alt="" /> <?php comments_popup_link('No Comments &raquo;', '1 Comment &raquo;', '% Comments &raquo;'); ?></p>
  20.       <?php endif; ?>
  21.     </div>
  22.  
  23.  
  24.     <?php comments_template(); ?>
  25.   <?php endwhile; ?>
  26.  
  27. <p align="center"><?php next_posts_link('&laquo; Previous Entries') ?>   <?php previous_posts_link('Next Entries &raquo;') ?></p>
  28.  
  29.     <?php else : ?>
  30.         <h3 align="center">Not Found</h3>
  31.         <p align="center">Sorry, but you are looking for something that isn't here.</p>
  32.     <?php endif; ?>
  33.         </div>
  34. <!-- end content-->
  35.  
  36. <?php get_footer(); ?>
  37.  
  38.  
  39.   </div>
  40. </body>
  41. </html>
  42.  
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement