Newer
Older
Import / web / www.xiaofrog.com / wordpress / wp-content / themes / connections-reloaded / search.php
<?php /* Don't remove this line. */ require('./wp-blog-header.php'); ?>
<?php get_header() ?>
<div id="main">
	<div id="content">	
	<?php if (have_posts()) { ?>	
		<?php $post = $posts[0]; /* Hack. Set $post so that the_date() works. */ ?>
		<h3><?php _e('Search Results for '); echo '&#8220;<strong>'.$s.'</strong>&#8221;.'; ?></h3>			
		<div class="post-info"><?php _e('Did you find what you wanted?') ?></div>		
		<br/>				
		<?php while (have_posts()) { the_post(); ?>				
			<?php require('post.php'); ?>
		<?php } ?>
	<?php } else { ?>
		<h2 class="center"><?php _e('Not Found') ?></h2>
		<p><?php _e('Sorry, no posts were found contaning '); echo '&#8220;<strong>'.$s.'</strong>&#8221;.'; ?></p>
	<?php } ?>		
	</div>
	<div id="sidebar">
		<?php get_sidebar(); ?>
	</div>

<?php get_footer(); ?>