single.php 821 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * The Template used to display all single posts
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty Ten
  7. * @since 3.0.0
  8. */
  9. ?>
  10. <?php get_header(); ?>
  11. <div id="container" class="onecolumn">
  12. <div id="content">
  13. <?php the_post(); ?>
  14. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  15. <h1 class="entry-title"><?php the_title(); ?></h1>
  16. <div class="entry-content">
  17. <?php the_content(); ?>
  18. </div><!-- .entry-content -->
  19. <div class="hide">
  20. <div id="content_video">
  21. <div id='contentInner'>
  22. <?php the_content(); ?>
  23. </div>
  24. </div>
  25. </div>
  26. </div><!-- #post-<?php the_ID(); ?> -->
  27. <?php comments_template( '', true ); ?>
  28. </div><!-- #content -->
  29. </div><!-- #container -->
  30. <?php get_sidebar(); ?>
  31. <?php get_footer(); ?>