page-press.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?php /* Template Name: Press */ ?>
  2. <?php get_header(); ?>
  3. <div id="press-wrap">
  4. <div class="container">
  5. <div class="press-container">
  6. <div class="row journal">
  7. <div class="twelvecol">
  8. <?php query_posts( array ( 'paged' => get_query_var('paged') ) ); ?>
  9. <?php if ( have_posts() ) : ?>
  10. <?php while ( have_posts() ) : the_post(); ?>
  11. <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
  12. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  13. <time datetime="<?php the_time('Y-m-d')?>"><?php the_time('F jS, Y') ?></time>
  14. <?php the_content(); ?>
  15. <?php the_tags('Tags: ', ', ', '<br />'); ?>
  16. </article>
  17. <?php endwhile; endif;?>
  18. <div class="page-navigation">
  19. <div class="next">
  20. <?php previous_posts_link('More Recent') ?>
  21. </div>
  22. <div class="previous">
  23. <?php next_posts_link('Older') ?>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <?php get_footer(); ?>