The code that is in the home.php is:
<?php get_header(); ?>
<div id=”contentwrapper”><div id=”content”>
<div class=”adsense_top”><?php include (TEMPLATEPATH . ‘/adsense_top.php’); ?></div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post”>
<h2 class=”postTitle”>“><?php the_title(); ?></h2>
<div class=”postMeta”>
<p>Por <?php the_author(); ?></p><span class=”date”><?php the_time(‘d,M. Y’) ?></span> em
<span class=”filed”><?php the_category(‘, ‘); ?></span>
<span class=”commentcount”><?php comments_popup_link(‘Nenhum comentário ainda’, ‘1 comentário’, ‘% comentários’); ?></span>
</div>
<div class=”postContent”><?php the_content(‘[Continue lendo…]’); ?></div>
</div> <!– Closes Post –>
<?php endwhile; ?>
<?php else : ?>
<div class=”post”>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
</div> <!– Closes Post –>
<?php endif; ?>
<div id=”nextprevious”>
<div class=”left”><?php posts_nav_link(”,”,’« previous entries’) ?> </div>
<div class=”right”><?php posts_nav_link(”,’next entries »’,”) ?></div>
</div>
<div class=”cleared”></div>
</div></div> <!– Closes Content –>
<?php get_sidebar(); ?>
<div class=”cleared”></div>
</div> <!– Closes Main –>
<div class=”bottomcurvewhite”></div>
<?php get_footer(); ?>