Advertisement
deepbevel

Untitled

Jan 11th, 2012
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="title-wrapper"><div class="title-bg"></div><div class="title clearfix"><div id="drag_btn" href="#"></div><div id="slide_btn" href="#"></div>
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13. <?/*php $post = $posts[0]; // Hack. Set $post so that the_date() works.*/ ?>
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24. <?php /* If this is a category archive */ if (is_category()) { ?>
  25.  
  26.  
  27.  
  28.  
  29. <h1>Archive for '<?php single_cat_title(); ?>'</h1>
  30.  
  31.  
  32.  
  33.  
  34. <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
  35. <h1>Posts Tagged '<?php single_tag_title(); ?>'</h1>
  36.  
  37.  
  38.  
  39.  
  40. <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
  41. <h1>Archive for <?php the_time('F jS, Y'); ?></h1>
  42.  
  43.  
  44.  
  45.  
  46.  
  47. <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
  48. <h1>Archive for <?php the_time('F, Y'); ?></h1>
  49.  
  50.  
  51.  
  52.  
  53.  
  54. <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
  55. <h1>Archive for <?php the_time('Y'); ?></h1>
  56.  
  57.  
  58.  
  59.  
  60. <?php /* If this is an author archive */ } elseif (is_author()) { ?>
  61. <h1>Author Archive</h1>
  62.  
  63.  
  64.  
  65. <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
  66. <h1>Blog Archives</h1>
  67.  
  68.  
  69.  
  70.  
  71. <?php } ?>
  72. <?php echo tag_description(); ?>
  73. </div>
  74.  
  75. <!-- end frame -->
  76. </div>
  77.  
  78.  
  79.  
  80. <div id="freespace-title"></div>
  81.  
  82. <div class="content-wrapper clearfix"><div class="content clearfix">
  83. <ul id="sidebar-right">
  84. <?php teardrop_get_sidebar("blog_right")?>
  85. </ul>
  86.  
  87. <div class="article">
  88. <?php teardrop_breadcrumb_nav()?>
  89. <?php get_template_part("inc/_list") ?>
  90. </div>
  91. </div></div>
  92. <div id="freespace"></div>
  93.  
  94. <?php get_footer()?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement