File: C:/xampp/htdocs/wordpress0612/wp-content/themes/mini/item.php
<h2>
<?php if (is_home()) { ?>
<a href="<?php the_permalink() ?>" title="<?php _e('Permanent Link to', 'default'); ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php } else { ?>
<?php the_title(); ?>
<?php } ?>
</h2>
<div class="opts">
<?php if (is_home() || is_single()) { ?>
<span class="clock margin-right"><?php _e('Posted on', 'default'); ?> <?php the_time('F jS, Y') ?></span>
<span class="person margin-right"><?php the_author() ?></span>
<span class="comment margin-right">
<a href="<?php comments_link(); ?>"><?php comments_number( __( 'No comments', 'default' ), __( '1 comment', 'default' ), __( '% comments', 'default' ), __( 'comments', 'default' )); ?></a>
</span>
<?php } ?>
</div>
<?php the_content(__('Read the rest of this entry »', 'default')); ?>
<div class="clear"></div>
<?php if (function_exists('wp_link_pages')) wp_link_pages(); ?>
<div class="info">
<?php if (is_home() || is_single()) { ?>
<span class="folder margin-right"><?php the_category(', ') ?></span>
<?php the_tags('<span class="tag margin-right">', ', ', '</span>'); ?>
<?php } ?>
<?php edit_post_link(__('Edit', 'default'), '<span class="edit block">', '</span>'); ?>
</div>