OK, thanks. The home page is custom (index.php), the template is not modified. The theme in use is Cutline (http://cutline.tubetorial.com/).
The index.php is as follows:
<?php get_header(); ?>
<div id="content_box">
<div id="content" class="posts">
<p ><div style="margin:10px;" align="middle">
<script type="text/javascript"><!--
google_ad_client = "pub-6614090734036311";
/* 468x60, created 2/22/08 HomePage */
google_ad_slot = "2730902168";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></p>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
<h4><?php the_time('F jS, Y') ?><!-- by <?php the_author() ?> --> · <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></h4>
<div class="entry">
<?php the_content('[Read more →]'); ?>
</div>
<p class="tagged"><span class="add_comment"><?php comments_popup_link('→ No Comments', '→ 1 Comment', '→ % Comments'); ?></span>Category: <?php the_category(' · ') ?></p>
<div class="clear"></div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . '/navigation.php'); ?>
<?php else : ?>
<h2 class="page_header center">Not Found</h2>
<div class="entry">
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>