-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.php
executable file
·28 lines (23 loc) · 1.18 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php include "header.php"; ?>
<div class="clearer"> </div>
<div class="post">
<h2 class="searchresult">Search results for "<?php echo ""."$s"; ?>"</h2>
<?php if (have_posts()) : ?>
<div class="searchdetails"> </div>
<?php while (have_posts()) : the_post(); ?>
<h2 class="searchresult"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to article"><?php the_title(); ?></a></h2>
<div class="searchinfo" style="display:none"><?php _e("("); ?><?php the_category(' and') ?> <?php _e(")"); ?></div>
<div class="clearer" style="display:none"> </div>
<?php the_excerpt() ?>
<div class="searchinfo" style="display:none"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">(Read full article...)</a></div>
<?php endwhile; ?>
<?php else : ?>
Sorry, no matching posts were found.
<?php endif; ?>
</div>
<div class="postnavigation">
<div class="right"><?php posts_nav_link('','','previous posts »') ?></div>
<div class="left"><?php posts_nav_link('','« newer posts ','') ?></div>
</div>
<div id="bottomcontent"> </div>
<?php include "footer.php"; ?>