web/wp-content/themes/seoblogsystem/search.php
changeset 1 0d28b7c10758
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/themes/seoblogsystem/search.php	Fri Mar 12 13:29:04 2010 +0000
@@ -0,0 +1,77 @@
+<?php get_header(); ?>
+<?php get_sidebar(1); ?>
+<?php get_sidebar(2); ?>
+
+		<?php if (have_posts()) : ?>
+				
+			<div class="title-page"><h2 style="margin:0;">Search results</h2></div>
+	
+			<div class="navigation">
+				<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
+				<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
+				<div class="clear"></div>
+			</div>
+	
+					<?php while (have_posts()) : the_post(); ?>
+						<div <?php post_class() ?> id="post-<?php the_ID(); ?>" style=" width:auto;">
+							<div class="bg-top"><div class="bg-bot"><div class="bg-left"><div class="bg-right">
+					<div class="corner-left-top"><div class="corner-right-top"><div class="corner-left-bot"><div class="corner-right-bot">
+							<div class="indent">
+								
+									
+								<div class="title">
+									
+									<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>
+									
+									<div class="author">
+									posted by <?php the_author_link() ?>
+								</div>
+								
+								<div class="date">
+									<?php the_time('l, F j, Y') ?> 
+								</div>
+									
+								</div>
+								
+								<div class="text-box">
+									<?php the_content('<div class="more-link"><a href="#">Continue Reading</a></div>'); ?>
+								</div>
+								<div class="postmetadata">
+									<?php the_tags('Tags: ', ', ', '<br />'); ?>
+								</div>
+								<div class="link-edit"><?php edit_post_link('Edit', ''); ?></div>
+								
+								
+							</div>
+							
+							</div></div></div></div>
+					</div></div></div></div>
+						</div>
+		
+			
+					<?php endwhile; ?>
+			
+				
+			<div class="navigation">
+				<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
+				<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
+				<div class="clear"></div>
+			</div>
+			
+		<?php else : ?>
+			
+				
+				<div class="title-page"><h2>Search result</h2></div>
+			
+				<div class="text-box">
+					<div class="search search_page">
+						<p>No posts found. Try a different search?<p>
+						
+						<?php include (TEMPLATEPATH . "/searchform.php"); ?>
+						
+					</div>
+				</div>
+		<?php endif; ?>
+	
+		
+<?php get_footer(); ?>
\ No newline at end of file