page-promo.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <img src="<?php echo get_template_directory_uri(); ?>/img/LOGLINE.png" />
  13. <div class="sixcol">
  14. <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
  15. <div style="float:left;margin: 0 20px 0px 0;max-width:100%;">
  16. <?php the_post_thumbnail('large');?>
  17. </div>
  18. <?php the_excerpt(); ?>
  19. </article>
  20. <div id="comments" class="comments-area">
  21. <?php get_template_part( 'comment', 'feedback' ); ?>
  22. </div>
  23. </div>
  24. <div class="sixcol">
  25. <article>
  26. <div class="top-pad page">
  27. <?php the_content(); ?>
  28. </div>
  29. </article>
  30. </div>
  31. <?php endwhile; endif;?>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. <?php get_footer(); ?>