]> git.openstreetmap.org Git - stateofthemap.git/blob - search.php
Update http -> https img links
[stateofthemap.git] / search.php
1 <?php get_header(); ?>
2 <?php get_sidebar(); ?>
3 <div id="main">
4
5         <?php if (have_posts()) : ?>
6
7                 <h1>Search Results</h1>
8                 <a name="top">
9                 <?php while (have_posts()) : the_post(); ?>
10                                 
11                         <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
12                                                                 
13                                         <?php the_excerpt(); ?>
14                                         <!--
15                                                 <?php trackback_rdf(); ?>
16                                         -->
17                                 
18                                 <p class="post-footer align-right">Posted in <?php the_category(', ') ?> on <span class="date"><?php the_time('F jS, Y') ?></span> <strong>|</strong> <?php edit_post_link('Edit','','<strong> | </strong>'); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
19                                 [ <a href="#top">Back to top</a> ]
20                                 <?php endwhile; ?>
21                         </div>
22                         <div class="navigation">
23                         <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
24                         <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
25                 </div>
26         
27         <?php else : ?>
28
29                 <h2 class="center">Not Found</h2>
30                 <?php include (TEMPLATEPATH . '/searchform.php'); ?>
31
32         <?php endif; ?>
33                 
34 </div>
35
36 <?php get_footer(); ?>