zeelifestyle

single

Jun 13th, 2011
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4.  
  5. <div id="search_wrap">
  6. <div class="wrap">
  7.  
  8.  
  9. <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
  10. <fieldset>
  11. <input type="text" name="s" id="s" onblur="if (this.value == '') {this.value = 'Search...';}" onfocus="if (this.value == 'Search...') {this.value = '';}" value="Search..." />
  12. <input type="submit" class="button" value="" />
  13. </fieldset>
  14. </form>
  15.  
  16.  
  17.  
  18. <div class="text_size"><?php chgfontsize_display_options(); ?></div>
  19. </div>
  20. </div>
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. <div id="main">
  28.  
  29.  
  30.  
  31. <div class="wrap">
  32.  
  33.  
  34. <!--Title-->
  35. <div id="tagline">
  36. <h3>
  37. <?php
  38. $category = get_the_category();
  39. $parent = get_cat_name($category[0]->category_parent);
  40. echo $category[0]->cat_name;
  41. ?>
  42. </h3>
  43. </div>
  44.  
  45. <!--Sidebar-->
  46. <?php get_sidebar(); ?>
  47.  
  48. <!--Content right part-->
  49. <div class="col_3_4">
  50.  
  51. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  52. <h2><?php the_title(); ?></h2>
  53. <div class="storycontent">
  54. <?php the_content(); ?>
  55. </div>
  56. <?php endwhile; endif; ?>
  57.  
  58. <div id="comments_wrap">
  59. <?php comments_template(); ?>
  60. </div>
  61. </div>
  62. </div>
  63.  
  64.  
  65. <!--Clearboth for IE-->
  66. <div id="clearboth"></div>
  67.  
  68. </div>
  69. </div>
  70.  
  71.  
  72. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment