page-history.php 931 B

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