File: C:/xampp/htdocs/wordpress/wp-content/themes/mini/single.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="EN" lang="EN">
<head>
<?php get_header(); ?>
</head>
<body>
<div class="tac">
<div class="main tal">
<?php include (TEMPLATEPATH . "/head.php"); ?>
<div class="side-borders content-line">
<?php get_sidebar(); ?>
<div class="span-14-15 fl">
<div class="paddings-head">
<?php if (have_posts()) : ?>
<ul class="block content">
<?php while (have_posts()) : the_post(); ?>
<li class="block">
<?php include (TEMPLATEPATH . "/item.php"); ?>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
<?php if (function_exists('wp_list_comments')): ?>
<!-- WP 2.7 and above -->
<?php comments_template('', true); ?>
<?php else : ?>
<!-- WP 2.6 and below -->
<?php comments_template(); ?>
<?php endif; ?>
<div class="clr"> </div>
</div>
</div>
<div class="clr content-line"> </div>
</div>
<?php get_footer(); ?>
</div>
</div>
</body>
</html>