Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <div id="search_wrap">
- <div class="wrap">
- <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
- <fieldset>
- <input type="text" name="s" id="s" onblur="if (this.value == '') {this.value = 'Search...';}" onfocus="if (this.value == 'Search...') {this.value = '';}" value="Search..." />
- <input type="submit" class="button" value="" />
- </fieldset>
- </form>
- <div class="text_size"><?php chgfontsize_display_options(); ?></div>
- </div></div>
- <div id="main">
- <div class="wrap">
- <div id="tagline">
- <h3 class="myclass typeface-js">
- Search results
- </h3>
- </div>
- <!--Sidebar-->
- <?php get_sidebar(); ?>
- <!--Content right part-->
- <div class="col_3_4">
- <?php if (have_posts()) : ?>
- <?php while (have_posts()) : the_post(); ?>
- <div class="blog_item">
- <h3><a href="<?php the_permalink() ?>" rel="bookmark" class="myclass typeface-js" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
- <div class="storycontent"> <?php the_excerpt() ?></div>
- </div>
- <?php endwhile; ?>
- <br/>
- <div id="footer_nav"><?php posts_nav_link(' ', __('<span class="new">NEXT PAGE</span>'), __('<span class="old">PREVIOUS PAGE</span>')); ?></div>
- <?php else : ?>
- Nothing found.
- <?php endif; ?>
- </div>
- </div>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment