sponsors.php 642 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Template Name: Sponsors
  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="entry-content">
  12. <div class="sponsors">
  13. <h3>Sponsors</h3>
  14. <img src="<?php bloginfo( 'template_url' ); ?>/images/support.jpg" width="300"/>
  15. <?php the_content(); ?>
  16. </div>
  17. </div><!-- .entry-content -->
  18. </div><!-- #post-<?php the_ID(); ?> -->
  19. <?php comments_template( '', true ); ?>
  20. </div><!-- #content -->
  21. </div><!-- #container -->
  22. <?php get_footer(); ?>