here is code for showing title, the date, the author, comments, a few words (excerpt) and tags. you will need to look up the names of your “div class” tags or create new ones in your style.css …
<div class="">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="small"><?php the_time('F jS, Y') ?> by <?php the_author() ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></p>
<div class="">
<?php the_excerpt() ?>
</div>
<p class="tagged"><strong>Tags:</strong> <?php the_category(' · ') ?></p>