<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div id="post-title">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div id="post-info">
<ul>
<li class="view"><?php if(function_exists('the_views')) { the_views(); } ?> </li>
<li class="date"><?php the_time(__('F jS, Y','kubrick')) ?></li>
<li class="categry"><?php the_category(__(', ','kubrick')) ?></li>
</ul>
<div class="clear"></div>
</div></div>
<div id="content">
<div class="imgcontent">
<img src="<?php echo catch_that_image() ?>" alt="<?php the_title_attribute(); ?>" title="<?php the_title_attribute(); ?>" height="250" width="250"/></a>
<?php the_content_rss('', TRUE, '', 20); ?>
</div>
<p style="text-align: center;"> </p>
<p style="text-align: right;">==>> مشاهده <a href="<?php the_permalink() ?>" target="_blank"><?php the_title(); ?></a> . . .</p>
<p style="text-align: center;"> </p>
<p style="text-align: justify;">برچسب ها : <?php the_tags( "", " ", "" ); ?></p>
</div>
<div id="post-footer"></div>
</div>
<?php endwhile; ?>