I've lost my Post Title?

I can’t seem to figure out why my post title is not showing up on the single post view of my WordPress site. I installed What The File which indeed confirms that the code is being generated by my single.php, and in that file I do see the code for post title.

<h2 class="post-title"><a title="'<?php the_title_attribute(); ?>', posted on <?php the_time('F jS, Y') ?>" href="<?php the_permalink() ?>"><?php the_title(''); ?></a></h2>

Below is an example of what I’m talking about. The page displays without title. The title should read, “2011 Five Months In.”
http://www.jangilbertart.com/wp/2011/05/28/2011-five-months-in/

Can someone help me figure out where I’m going wrong?

I don’t use wordpress but PHP has termination rules that seem to be missing:

<?php the_time('F jS, Y') ?>" href="<?php the_permalink() ?>

add the semi-colon to see if it solves your problem:

<?php the_time('F jS, Y'); ?>" href="<?php the_permalink(); ?>
Sponsor our Newsletter | Privacy Policy | Terms of Service