page-promo.php 994 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php /* Template Name: Promo */ ?>
  2. <?php get_header(); ?>
  3. <div id="press-wrap">
  4. <div class="container">
  5. <div class="row">
  6. <div class="promo">
  7. <?php if ( have_posts() ) : ?>
  8. <?php while ( have_posts() ) : the_post(); ?>
  9. <header class="entry-header">
  10. <h1 class="times"><?php the_title(); ?> <span class="subtitle">a documentary by Chris Hegedus and D.A. Pennebaker</span></h1>
  11. </header>
  12. <div class="sixcol">
  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. <div id="comments" class="comments-area">
  20. <?php get_template_part( 'comment', 'feedback' ); ?>
  21. </div>
  22. </div>
  23. <div class="sixcol">
  24. <article>
  25. <div class="top-pad page">
  26. <?php the_content(); ?>
  27. </div>
  28. </article>
  29. </div>
  30. <?php endwhile; endif;?>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <?php get_footer(); ?>