I think trying to use a template from the WordPress directory of templates messed up the default. I've double checked and all my "posts" and images etc are all in the godaddy site. From the web (miaandleila.net) I get the default template header and side bar and a 404 File Not Found error. So I think everything is correct until I get to the Index file in the Default theme folder where instead of displaying the posts it is displaying the error page. The posts are in a subfolder to the wp-contect folder called Uploads (that was the default I didn't change anything in setup). So how do I get it to find the posts? Ideas? Thanks in advance for any help.
Here is the code for the start of the Index page....
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>