<?php get_header(); ?>
<div id="left">
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div id="post" title="post-<?php the_ID(); ?>">
<div id="postinfotop">
Posted at <?php the_time(); ?> <?php the_date(); ?> by <?php the_author() ?>
</div>
<div id="postcontent">
<img src="<?php bloginfo('template_directory'); ?>/images/catimg.jpg" align="left" width="135px" height="135px" /><span id="h3"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></span><br /><?php the_content(__('(more...)')); ?>
</div>
<div id="postbottom">
Posted in <?php the_category(', ') ?> | <?php comments_popup_link('No Comments »', '[1] Comment', '[%] Comments;'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<?php posts_nav_link(); ?>
</div>
<?php else : ?>
<div id="post">
<h2><?php _e('Not Found'); ?></h2>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</div>
</body>
</html>