All pastes #2122886 Raw Edit

Someone

public text v1 · immutable
#2122886 ·published 2012-02-29 13:25 UTC
rendered paste body
<?php
/*
Template Name: NHB Concert Posters
*/
?>
<?php get_header(); ?>

<div id="content">
<div id="entry_content">

  <?php
  $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
  $args= array(
          'category_name' => 'general', // Change these category SLUGS 
          'paged' => $paged
  );
  query_posts($args);
  if( have_posts() ) :?>

 <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

 <div class="navigation">
  <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
  <?php while ( have_posts() ) : the_post(); ?>
   <?php get_template_part( 'content', get_post_format() ); ?>
  <?php endwhile; ?>
   <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
  <?php else : ?>
   <article id="post-0" class="post no-results not-found">
   <header class="entry-header">
   <h1 class="entry-title"><?php _e( 'Nothing Found', 'oulipo' ); ?></h1>
   </header><!-- .entry-header -->
   <div class="entry-content">
   <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'oulipo' ); ?></p>
   <?php get_search_form(); ?>
   </div><!-- .entry-content -->
   </article>
  <?php endif; ?>
 </div><!-- .navigation -->
 
</div><!-- #entry_content -->

<?php get_sidebar(); ?>
<?php get_footer();