1. <?php
  2. /*
  3. Template Name: Home
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <div id="content">
  9.  
  10. <h4>Home</h4>
  11.  
  12. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  13.  
  14. <div id="post-<?php the_ID(); ?>">
  15.  
  16. <div class="entry">
  17. <a href="<?php the_permalink(); ?>"></a>
  18.  
  19.  
  20. <?php the_post_thumbnail(); ?>
  21. <?php the_content(); ?>
  22.  
  23. </div><!--entry-->
  24.  
  25. </div>
  26.  
  27. <?php endwhile; ?>
  28.  
  29. <?php endif; ?>
  30.  
  31. </div><!-- #content -->
  32.  
  33. <?php get_footer(); ?>