Ok. I'm messing it all up, lol. I've tried putting the codes in the right places but I'm not getting it right.
Here's the index.php. Can someone show me where I need to put it?
<?php get_header(); ?>
<div id="side-left">
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="kutu">
<div class="ust"><span></span></div>
<div class="post" id="post-<?php the_ID(); ?>">
<img src="http://chanellie.com/diarylock.gif" align="left"><h2>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></h2>
<font color="#B890DC"><?php the_time('F d, Y') ?> | <?php comments_popup_link('No Comment', '1 Comment', '% Comments'); ?></font>
<div class="tags"><?php the_tags('Tags: ', ', ', ''); ?></div>
<div class="entry" align="justify">
<?php the_content(' '); ?>
</div>
<br class="clear" />
<div class="postmetadata">Click " rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="more">here to " rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="more">read more of this post...</div>
</div>
<div class="alt"><span></span></div></div>
<?php endwhile; ?>
<div id="navigation">
<div class="alignleft"><?php next_posts_link('Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries') ?></div>
</div>
<?php else : ?>
<div class="kutu">
<div class="ust"><span></span></div>
<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"); ?>
<div class="alt"><span></span></div></div>
<?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>