Advertisement
Guest User

category-events.php

a guest
Sep 15th, 2012
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.27 KB | None | 0 0
  1. <?php include("header.inc"); ?>
  2.  
  3. <?php include("top.inc"); ?>
  4.    
  5.    
  6.     <div class="wrapper">
  7.         <div id="board">
  8.  
  9. <?php get_header(); ?>
  10.  <div id="content" class="narrowcolumn">
  11.  <p>
  12.  <strong>
  13.   <?php single_cat_title('Currently browsing '); ?>
  14.   </strong><br />
  15.  <?php echo category_description(); ?>
  16.  </p>
  17.  <?php if (have_posts()) : ?>
  18.    <?php while (have_posts()) : the_post(); ?>
  19.      <div class="post">
  20.       <h2 id="post-<?php the_ID(); ?>">
  21. <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
  22. <?php the_title(); ?></a></h2>
  23.    <small>
  24.      <?php the_time('F jS, Y') ?>
  25.         <!-- by <?php the_author() ?> -->
  26.    </small>
  27.  </div>
  28. <?php endwhile; ?>
  29.  <div class="navigation">
  30.    <div class="alignleft">
  31.     <?php posts_nav_link('','','&laquo; Previous Entries') ?>
  32.    </div>
  33.    <div class="alignright">
  34.     <?php posts_nav_link('','Next Entries &raquo;','') ?>
  35.    </div>
  36.  </div>
  37. <?php else : ?>
  38.   <h2 class="center">Not Found</h2>
  39. <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
  40.  <?php endif; ?>
  41. </div>
  42. <?php get_sidebar(); ?>
  43. <?php get_footer(); ?>
  44.        
  45.         </div><!-- end board div -->
  46.     </div><!-- end wrapper class -->
  47.    
  48. <?php include("footer.inc"); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement