Validation is still broken. See http://validator.w3.org/check?uri=http%3A%2F%2Fwww.yourliferegained.com%2F&charset=(detect+automatically)&doctype=Inline&ss=1&outline=1&group=0&No200=1&verbose=1&accept=text%2Fhtml%2Capplication%2Fxhtml%2Bxml%2Capplication%2Fxml%3Bq%3D0.9%2C*%2F*%3Bq%3D0.8&accept-language=en-us%2Cen%3Bq%3D0.5&accept-charset=ISO-8859-1%2Cutf-8%3Bq%3D0.7%2C*%3Bq%3D0.7&user-agent=W3C_Validator%2F1.591
My index.php is as follows:
<?php get_header(); ?>
<div id="content">
<div id="contentleft">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1>" rel="bookmark"><?php the_title(); ?></h1>
<div class="date">
<?php the_time('F j, Y'); ?> by <?php the_author_posts_link(); ?> · <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
Filed under: <?php the_category(', ') ?> <?php edit_post_link('(Edit)', '', ''); ?>
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
</div>
<?php the_excerpt(__('Read more'));?><div style="clear:both;"></div>
<div class="postmeta">
<p>Keywords: <?php the_tags('') ?> </p>
<?php if( function_exists('ADDTOANY_SHARE_SAVE_BUTTON') ) { ADDTOANY_SHARE_SAVE_BUTTON(); } ?>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php include(TEMPLATEPATH."/r_sidebar.php");?>
</div>
<!-- The main column ends -->
<?php get_footer(); ?>