Thanks Dan. Those are new errors from my blogads (I’ve had trouble with blogads before and fixed it so the site would validate then they switched the code on me). I will fix them but the problem was happening before with the old validating code up, too.
There is no wp directory because I installed it right under my public_html directory.
And ZMang, here’s the index.php file.
<?xml version=”1.0″ encoding=”utf-8″?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” xml:lang=”en” lang=”en”>
<?php
get_header();
get_sidebar();
?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id=”post-<?php the_ID(); ?>” class=”post”>
<div class=”post-header”>
<h2 class=”post-title”>” title=”Permalink to <?php the_title(); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<h3 class=”post-date”><?php the_time(‘d-M-y’) ?></h3>
</div><!– END POST-HEADER –>
<div class=”post-entry”>
<?php the_content(); ?>
<?php link_pages(‘<p style=”font-weight:bold;”>Pages: ‘, ”, ‘number’); ?>
</div><!– END POST-ENTRY –>
<div class=”post-metadata”>
<p class=”post-footer”>Filed in <?php the_category(‘ • ‘) ?></div> | ” rel=”permalink” title=”Permalink to <?php the_title(); ?>”>Permalink | <?php comments_popup_link(‘Comments (0) »’, ‘Comments (1) »’, ‘Comments (%) »’); ?> <?php edit_post_link(‘Revise’, ‘ | ‘, ”); ?>
</div><!– END POST-METADATA –>
<!– <?php trackback_rdf(); ?> –>
</div><!– END POST –>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Older posts’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Newer posts »’) ?></div>
<div class=”middle”>/” title=”Home: <?php bloginfo(‘name’); ?>”>Home</div>
</div><!– END NAVIGATION –>
<?php else : ?>
<?php /* INCLUDE FOR ERROR TEXT */ include (TEMPLATEPATH . ‘/errortext.php’); ?>
<?php endif; ?>
</div><!– END CONTENT –>
<?php get_footer(); ?>