I created a custom template and have it on a localhost server. The wordpress dashboard and other features seem to be operating fine as I can create posts and they are saved. I have the post loop in the index.php file, but the posts aren't being displayed when I click on the "View Site" link. Just to make certain that the loop was working, I put an echo in the loop and it is working as expected. Below is the loop code. Thanks
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php echo "post"; endwhile; endif; ?>
<?php
//Reset Query
wp_reset_query();
?>