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">
- <!--Title-->
- <div id="tagline">
- <h3>
- <?php
- $category = get_the_category();
- $parent = get_cat_name($category[0]->category_parent);
- echo $category[0]->cat_name;
- ?>
- </h3>
- </div>
- <!--Sidebar-->
- <?php get_sidebar(); ?>
- <!--Content right part-->
- <div class="col_3_4">
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <h2><?php the_title(); ?></h2>
- <div class="storycontent">
- <?php the_content(); ?>
- </div>
- <?php endwhile; endif; ?>
- <div id="comments_wrap">
- <?php comments_template(); ?>
- </div>
- </div>
- </div>
- <!--Clearboth for IE-->
- <div id="clearboth"></div>
- </div>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment