2008-09-27 05:49:27 -04:00
< ? php
/**
* @ package WordPress
* @ subpackage Default_Theme
*/
get_header (); ?>
2004-12-30 06:14:01 -05:00
< div id = " content " class = " narrowcolumn " >
< ? php if ( have_posts ()) : ?>
< h2 class = " pagetitle " > Search Results </ h2 >
2006-02-12 02:53:23 -05:00
2004-12-30 06:14:01 -05:00
< div class = " navigation " >
2007-06-07 19:33:06 -04:00
< div class = " alignleft " >< ? php next_posts_link ( '« Older Entries' ) ?> </div>
< div class = " alignright " >< ? php previous_posts_link ( 'Newer Entries »' ) ?> </div>
2004-12-30 06:14:01 -05:00
</ div >
< ? php while ( have_posts ()) : the_post (); ?>
2006-02-12 02:53:23 -05:00
2008-08-13 17:58:06 -04:00
< div < ? php post_class () ?> >
2007-09-18 18:50:59 -04:00
< h3 id = " post-<?php the_ID(); ?> " >< a href = " <?php the_permalink() ?> " rel = " bookmark " title = " Permanent Link to <?php the_title_attribute(); ?> " >< ? php the_title (); ?> </a></h3>
2004-12-30 06:14:01 -05:00
< small >< ? php the_time ( 'l, F jS, Y' ) ?> </small>
2006-02-12 02:53:23 -05:00
2007-03-31 02:16:12 -04:00
< p class = " postmetadata " >< ? php the_tags ( 'Tags: ' , ', ' , '<br />' ); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
2004-12-30 06:14:01 -05:00
</ div >
2006-02-12 02:53:23 -05:00
2004-12-30 06:14:01 -05:00
< ? php endwhile ; ?>
< div class = " navigation " >
2007-06-07 19:33:06 -04:00
< div class = " alignleft " >< ? php next_posts_link ( '« Older Entries' ) ?> </div>
< div class = " alignright " >< ? php previous_posts_link ( 'Newer Entries »' ) ?> </div>
2004-12-30 06:14:01 -05:00
</ div >
2006-02-12 02:53:23 -05:00
2004-12-30 06:14:01 -05:00
< ? php else : ?>
2005-11-07 04:31:05 -05:00
< h2 class = " center " > No posts found . Try a different search ? </ h2 >
2004-12-30 06:35:04 -05:00
< ? php include ( TEMPLATEPATH . '/searchform.php' ); ?>
2004-12-30 06:14:01 -05:00
< ? php endif ; ?>
2006-02-12 02:53:23 -05:00
2004-12-30 06:14:01 -05:00
</ div >
2004-12-30 06:25:15 -05:00
< ? php get_sidebar (); ?>
< ? php get_footer (); ?>