Hey, I have been trying to get rid of the content on my home page just the posts that show up on my theme so i can make it a more navigational page rather just just have these posts pop up and im having trouble doing it can anyone help me out? Here is my site and code. http://www.thelcdtvreviewer.com
<?php get_header() ?>
<?php include(TEMPLATEPATH.'/includes/slide.php'); ?>
<div id="content">
<?php if (have_posts()) : $odd = true; ?>
<div id="mini-post-wrap" class="clearfix">
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="mini-post<?php if ($odd) : echo ' odd'; else : echo ' even'; endif; ?>">
<h3 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="entry">
<div style="display: block; margin: 10px 0px 0px 0px;">
<?php the_excerpt_reloaded(80, '<img>', 'content_rss', FALSE); ?>
</div>
</div>
<div class="meta">
<span class="meta-left"></span>
<span class="date-post icon">Posted on <?php the_time('F j Y') ?></span>
<a class="read-more icon" href="<?php the_permalink() ?>" title="Keep Reading...">Keep Reading...</a>
<span class="meta-right"></span>
</div>
</div>
<?php $odd = !$odd; endwhile; ?>
</div><!-- /mini-post-wrap -->
<div class="navigation clearfix">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else: ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>
Thanks.