I had customized my template and made modifications to the index.php file. I can't remember why I added this test but it was preventing the new version from displaying the content. Once I removed it from the index.php file the content for the main page started showing
I changed this:
<?php if($MobileJoomla->config['tmpl_iphone_componenthome'] || !$MobileJoomla->isHome()): ?>
<div class="container">
<?php $MobileJoomla->showComponent(); ?>
</div>
<?php endif; ?>
to this:
<div class="container">
<?php $MobileJoomla->showComponent(); ?>
</div>
I doubt this will help you since this was specific to changes I had made previously.