Advertisement
Guest User

index

a guest
Jun 9th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.53 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.     <div id="content" class="narrowcolumn">
  4.  
  5.     <?php if (have_posts()) : ?>
  6.  
  7.         <?php while (have_posts()) : the_post(); ?>
  8.  
  9.             <div class="post" id="post-<?php the_ID(); ?>">
  10.                 <div class="comments"><?php comments_popup_link('NO COMMENTS', '<span> 1 </span> COMMENTS', '<span> % </span> COMMENTS'); ?></div>
  11.                 <div class="PostHead">
  12.  
  13. <div class="PostTime"><?php the_time('<b>j</b> M Y') ?> </div>
  14. <h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  15. <small class="PostDet"><?php edit_post_link('Edit', '', ' | '); ?> Author: <?php the_author() ?> | Filed under: <?php the_category(', ') ?></small>
  16.  
  17. </div>
  18.  
  19.                 <div class="entry">
  20.                 <script type="text/javascript"><!--
  21. google_ad_client = "pub-1715633612259706";
  22. /* 468x60, created 11/9/08 */
  23. google_ad_slot = "1270343647";
  24. google_ad_width = 468;
  25. google_ad_height = 60;
  26. //-->
  27. </script>
  28. <script type="text/javascript"
  29. src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
  30. </script>
  31.                     <?php the_content('Read the rest of this entry »'); ?>
  32.                 </div>
  33.  
  34.             </div>  <p class="postmetadata">
  35.             <span class="tags"><?php the_tags('Tags: ', ', '); ?> </span>
  36.             </p>
  37.  
  38.         <?php endwhile; ?>
  39.  
  40.     <?php else : ?>
  41.  
  42.         <h2 class="center">Not Found</h2>
  43.         <p class="center">Sorry, but you are looking for something that isn't here.</p>
  44.         <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  45.  
  46.     <?php endif; ?>
  47.  
  48.     </div>
  49.  
  50. <?php get_sidebar(); ?>
  51.  
  52. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement