PageRenderTime 45ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/themes/bluesky/index.php

https://bitbucket.org/lgorence/quickpress
PHP | 39 lines | 29 code | 10 blank | 0 comment | 5 complexity | a91defd35ae1199ced7a00c1d37a7c0a MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, AGPL-1.0
  1. <?php get_header(); $postindex=0; ?>
  2. <div id="content" class="narrowcolumn">
  3. <?php if (have_posts()) : ?>
  4. <?php while (have_posts()) : the_post(); if ($postindex>0) { print "<center><img src='"; bloginfo('stylesheet_directory'); print "/images/blueskyseparator.png' width='174' height='40'></center>"; } $postindex++ ?>
  5. <div class="post" id="post-<?php the_ID(); ?>">
  6. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  7. <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
  8. <div class="entry">
  9. <?php the_content('Read the rest of this entry &raquo;'); ?>
  10. </div>
  11. <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>
  12. </div>
  13. <?php endwhile; ?>
  14. <div class="navigation">
  15. <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
  16. <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
  17. </div>
  18. <?php else : ?>
  19. <h2 class="center">Not Found</h2>
  20. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  21. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  22. <?php endif; ?>
  23. </div>
  24. <?php get_sidebar(); ?>
  25. <?php get_footer(); ?>