page-press.php 1005 B

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