It is a custom built theme, but here is how it is my index.php page:
?<?php get_header();?>
<script type="text/javascript">
$(function(){
$(".home").removeClass("home").addClass("homeAtivo");
});
</script>
<!-- index.php -->
<div class="areaPost">
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div class="postBlog">
<!-- come?a um post -->
<div class="espTituloPost">
<a href="<?php the_permalink();?>" title="<?php the_title(); ?>" class="TituloPost"><?php the_title();?></a>
</div> <!--.espTituloPost -->
<div class="infoPost">
<span class="dataPost"><?php the_date(); ?></span> |
<!--<a href="" class="comentariosPost">10 comentários</a>-->
<?php comments_popup_link('Sem comentários', '1 comentário', '% comentários;', 'comentariosPost'); ?>
</div> <!--.infoPost -->
<?php the_content();?>
<div class="areaTags">
<!--tags: <a href="" class="tagsPost">nome_tag</a>, <a href="" class="tagsPost">nome_tag</a>, <a href="" class="tagsPost">nome_tag</a>-->
<?php the_tags('tags: ', ',', ''); ?>
</div> <!--.areaTags -->
<!-- termina um post -->
</div>
<?php endwhile; ?>
<div class="areaPaginacao">
<?php previous_posts_link('« Prev Page') ?>
<?php next_posts_link('Next Page »') ?>
</div> <!--areaPaginacao -->
<?php endif; ?>
</div> <!--.areaPost -->
<?php get_sidebar(); ?>
<?php get_footer();?>