PageRenderTime 48ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/themes/the-go-green-theme/search.php

https://bitbucket.org/aqge/deptandashboard
PHP | 42 lines | 26 code | 16 blank | 0 comment | 3 complexity | 68a4d89620eac538a4746576df8d11c0 MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1
  1. <?php get_header(); ?>
  2. <div id="content" class="narrowcolumn">
  3. <?php if (have_posts()) : ?>
  4. <h2 class="pagetitle">Search Results</h2>
  5. <div class="navigation">
  6. <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
  7. <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
  8. </div>
  9. <?php while (have_posts()) : the_post(); ?>
  10. <div class="post">
  11. <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  12. <small><?php the_time('l, F jS, Y') ?></small>
  13. <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
  14. </div>
  15. <?php endwhile; ?>
  16. <div class="navigation">
  17. <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
  18. <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
  19. </div>
  20. <?php else : ?>
  21. <h2 class="center">No posts found. Try a different search?</h2>
  22. <?php include (TEMPLATEPATH . '/searchform.php'); ?>
  23. <?php endif; ?>
  24. </div>
  25. <?php get_sidebar(); ?>
  26. <?php get_footer(); ?>