I am only using WordPress for my blog page, the homepage is not made in WordPress. In wordpress, I only got a index.php (and some css files). All the code for the blog are in that file.
Here is the loop:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<font face="arial"> <h1><?php the_title(); ?></h1></font> <font size="1" face="times"><hr noshade color="#EEEEEE"><?php the_date(); ?> <?php the_time(); ?><hr noshade color="#EEEEEE"></font>
<center><font face="arial"> <?php the_content(); ?>
<hr noshade color="#EEEEEE">
<?php comments_template(); ?>
</center><hr noshade color="#000000"> <?php endwhile; endif; ?><p> </p>