OK maybe you mean the index code. Here is the code from my main index template
<?php get_header(); ?>
<body>
<div id=”container”>
<div id=”banner”>
<h1>” title=”<?php bloginfo(‘name’); ?>”><?php bloginfo(‘name’); ?></h1>
<h2 title=”<?php bloginfo(‘description’); ?>”><?php bloginfo(‘description’); ?></h2>
</div>
<div id=”links”>
<?php include(“nav.php”); ?>
</div>
<div id=”center”>
<div class=”content”>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class=”post”>
<div class=”date”><?php the_time(‘F j, Y’); ?></div>
<h2 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>
<?php the_content(__(‘Read more…‘)); ?>
<?php wp_link_pages(); ?>
<p class=”posted”>Posted by <?php the_author_posts_link() ?> <?php _e(“under”); ?> <?php the_category(‘,’) ?> | <?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?> <?php edit_post_link(‘|Edit this|’); ?> </p>
</div>
<!– <?php trackback_rdf(); ?> –>
<?php comments_template(); ?>
<?php endforeach; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?>
<p><div align=”center”><?php posts_nav_link(‘ ‘, __(‘« Previous Page‘), __(‘Next Page »‘)); ?></div></p>
</div>
</div>
<div id=”right”>
<?php get_sidebar(); ?>
<div id=”footer”>
<div class=”copyright”>
<small>
<span class=”copy”>Copyright © <?php echo date(“Y”).” “; ?>
” href=”<?php bloginfo(‘url’); ?>”><?php bloginfo(‘name’); ?>
</span>
<span class=”theme”>
| Powered by “><abbr title=”WordPress”>WordPress</abbr>
| Theme by Sreejith, GFXedit.com |
</span>
</small>
</div>
</div>
</div>
</div>
<script type=”text/javascript”>
<!–
var MenuBar1 = new Spry.Widget.MenuBar(“MenuBar1”);
//–>
</script>
</body>
</html>