File: /home/c1190199/public_html/wp-content/themes/Nova/includes/entry.php
<div class="entry clearfix">
<?php $thumb = '';
$width = 160;
$height = 160;
$classtext = '';
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Portfolio');
$thumb = $thumbnail["thumb"]; ?>
<?php global $post;
$page_result = is_search() && ($post->post_type == 'page') ? true : false; ?>
<h2 class="title<?php if ($page_result) echo(' page_result'); ?>"><a href="<?php the_permalink() ?>" title="<?php printf(__ ('Permanent Link to %s', 'Nova'), $titletext) ?>"><?php the_title(); ?></a></h2>
<?php if ((get_option('nova_postinfo1') <> '') && !($page_result)) { ?>
<?php include(TEMPLATEPATH . '/includes/postinfo.php'); ?>
<?php }; ?>
<?php if($thumb <> '' && get_option('nova_thumbnails_index') == 'on') { ?>
<div class="thumbnail">
<a href="<?php the_permalink(); ?>">
<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
<span class="overlay2"></span>
</a>
</div> <!-- .thumbnail -->
<?php }; ?>
<?php if (get_option('nova_blog_style') == 'on') the_content(""); else { ?>
<p><?php truncate_post(600); ?></p>
<?php }; ?>
<a class="readmore" href="<?php the_permalink(); ?>"><span><?php _e('read more','Nova'); ?></span></a>
<div class="clear"></div>
</div> <!-- end .entry -->