Hey All,
This is probably because you’ve got the posts returning on a page, rather than the default index which is just returning posts.
By default the ‘read more’ link is disabled on a page, so you have to set the variable to enable it, change:
<?php the_content('Read the full article...'); ?>
to
<?php
global $more;
$more = 0;
the_content('Read the full article...');
?>
Hope that helps!