here is the code for the index.php file. I’m not to savvy with php coding but pretty sure I need to change something within this code.
Anyone??
<?php get_header(); ?>
<?php if (have_posts()) : the_post(); ?>
<!– start content –>
<div id=”content”>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h1>
<p class=”meta”><small>Posted on <?php the_time(‘F jS, Y’) ?> by by <?php the_author() ?> <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?></small></p>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<p class=”links”><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?> ” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”>Permalink</p>
<p class=”tags”><?php the_tags(‘Tags: ‘, ‘, ‘, ‘ ‘); ?></p>
</div>
</div>
<!– end content –>
<!– start sidebar one –>
<div id=”sidebar1″ class=”sidebar”>
<li id=”recent-posts”>
<h2>Recent Posts</h2>
</div>
<!– end sidebar one –>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php include (TEMPLATEPATH . “/searchform.php”); ?>
<?php endif; ?>
<?php get_sidebar(); ?>
<!–
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Older Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Newer Entries »’) ?></div>
</div>
–>
<?php get_footer(); ?>