This is my index/main
<?php get_header(); ?>
<!-- begin content -->
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="divTitle1">
<div class="divTitle3"><span class="titolino"><?php the_title(); ?></span>
Posted on : <?php the_time('F jS, Y') ?> @ <?php the_time('g:i a'); ?> by <img src="images/name.gif" alt="name" title="name"/> </div></div>
<div class="post" id="post-<?php the_ID(); ?>">
<span class="pside">Admin :</span><?php edit_post_link('Edit the post.','',''); ?>
<span class="pside">Post category :</span> <?php the_category(', ') ?>
<span class="pside">Link to post :</span> ">permalink
<span class="pside">Comments :</span> <img src="/images/speechbubble.gif" alt="speechbubble" title="speechbubble"/> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
<?php else : ?>
<div class="box">
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div>
<?php endif; ?>
</div>
<!--end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I got it from https://v4ny.net/