-
+ 55E60FCC8D56FEA9DB9CC85093974F20039D4EA86F66E4D44B6C9C0A7276BCC2347AA237B549C5BAA381631E6E9D4E15B1D7757DBA28BC880BDE0255825530E7
mp-wp/wp-content/themes/default/search.php
(0 . 0)(1 . 48)
68076 <?php
68077 /**
68078 * @package WordPress
68079 * @subpackage Default_Theme
68080 */
68081
68082 get_header(); ?>
68083
68084 <div id="content" class="narrowcolumn">
68085
68086 <?php if (have_posts()) : ?>
68087
68088 <h2 class="pagetitle">Search Results</h2>
68089
68090 <div class="navigation">
68091 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
68092 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
68093 </div>
68094
68095
68096 <?php while (have_posts()) : the_post(); ?>
68097
68098 <div <?php post_class() ?>>
68099 <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>
68100 <small><?php the_time('l, F jS, Y') ?></small>
68101
68102 <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>
68103 </div>
68104
68105 <?php endwhile; ?>
68106
68107 <div class="navigation">
68108 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
68109 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
68110 </div>
68111
68112 <?php else : ?>
68113
68114 <h2 class="center">No posts found. Try a different search?</h2>
68115 <?php get_search_form(); ?>
68116
68117 <?php endif; ?>
68118
68119 </div>
68120
68121 <?php get_sidebar(); ?>
68122
68123 <?php get_footer(); ?>