film.php 790 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Template Name: Film
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7. <div id="container" class="onecolumn">
  8. <div id="content">
  9. <?php the_post(); ?>
  10. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <div class="hide">
  12. <div class="entry-content">
  13. <h3>Making Kings of Pastry</h3>
  14. <br />
  15. <div class="synop_thumb"><img src="<?php bloginfo( 'template_url' ); ?>/images/synop_tb.jpg" width="150"/></div><?php the_excerpt(); ?>
  16. <div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
  17. </div>
  18. </div><!-- .entry-content -->
  19. </div>
  20. <?php the_content(); ?>
  21. </div><!-- #post-<?php the_ID(); ?> -->
  22. </div><!-- #content -->
  23. </div><!-- #container -->
  24. <?php get_footer(); ?>