File: //usr/src/mechbunny/templates/default_tube2016/template.pornstar_item.php
<?
$link = generateUrl('models', $row['name'], $row['record_num']);
print_r();
?>
<!-- item -->
<div class="item-col item--pornstar col">
<div class="item-inner-col inner-col">
<a href="<? echo $link; ?>" title="<? echo ucwords($row['name']); ?>">
<span class="image">
<? if ($row[thumb] != '') { ?>
<img src="<? echo $basehttp; ?>/media/misc/<? echo $row[thumb]; ?>" alt="<? echo ucwords($row['name']); ?>">
<? } else { ?>
<img src='<? echo $basehttp; ?>/core/images/catdefault.jpg' alt="<? echo ucwords($row['name']); ?>">
<? } ?>
</span>
<span class="item-info">
<span class="title">
<? echo ucwords($row['name']); ?>
</span>
<span class="item-stats">
<span class="s-elem s-e-rate">
<span class="icon i-thumbs-up"></span>
<span class="sub-desc"><? echo (!empty($row['rating']) ? $row['rating'] : '0'); ?>%</span>
</span>
</span>
</span>
</a>
</div>
</div>
<!-- item END -->