page-history.php 783 B

1234567891011121314151617181920212223242526272829303132
  1. <?php /* Template Name: History*/ ?>
  2. <?php get_header(); ?>
  3. <div id="press-wrap">
  4. <div class="container">
  5. <div class="row">
  6. <div class="history">
  7. <?php if ( have_posts() ) : ?>
  8. <?php while ( have_posts() ) : the_post(); ?>
  9. <div class="sixcol">
  10. <header class="entry-header">
  11. <h1><?php the_title(); ?></h1>
  12. </header>
  13. <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
  14. <div style="float:left;margin: 0 20px 20px 0;max-width:100%;">
  15. <?php the_post_thumbnail('large');?>
  16. </div>
  17. <?php the_excerpt(); ?>
  18. </article>
  19. <?php endwhile; endif;?>
  20. </div>
  21. <div class="sixcol">
  22. <article>
  23. <div class="top-pad page">
  24. <?php the_content(); ?>
  25. </div>
  26. </article>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <?php get_footer(); ?>