Advertisement
Guest User

index.php

a guest
Feb 20th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content" class="index">
  4.  
  5. <?php if (have_posts()) : ?>
  6.  
  7. <?php while (have_posts()) : the_post(); ?>
  8.  
  9. <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  10. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  11. <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
  12.  
  13. <div class="entry">
  14. <?php the_content('Read the rest of this entry &raquo;'); ?>
  15. </div>
  16.  
  17. <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
  18. </div>
  19.  
  20. <?php endwhile; ?>
  21.  
  22. <div class="navigation">
  23. <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
  24. <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
  25. </div>
  26.  
  27. <?php else : ?>
  28.  
  29. <h2 class="center">Not Found</h2>
  30. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  31. <?php get_search_form(); ?>
  32.  
  33. <?php endif; ?>
  34. </div><!--content-->
  35.  
  36.  
  37. <?php get_sidebar(); ?>
  38.  
  39. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement