?>
</a>
			</div>
			<div id="overview" class="body columns three">
					<h4><a href="<?php 
    echo $addon->permalink;
    ?>
" title="View <?php 
    echo $addon->title;
    ?>
"><?php 
    echo $addon->title_out;
    ?>
</a></h4>
					<span>by <?php 
    echo AddonCatalogPlugin::name_url_list($addon->info->authors);
    ?>
</span>
					<hr>						
					<div>
						<?php 
    for ($z = 0; $z < 5; $z++) {
        if ($addon->rating <= $z * 20 || 0 == $addon->rating) {
            $class1 = '';
            $class2 = 'zero';
        } elseif ($addon->rating > $z * 20 && $addon->rating < $z * 20 + 10) {
            $class1 = '';
            $class2 = 'fifty';
        } else {
            $class1 = 'hide';
            $class2 = 'hundred';
							<div style="float:left;margin-right: 5px;"><i class="icon-link">g</i></div>
							<div style="float:left;width:185px;"><a href="<?php 
echo $post->info->repo_url;
?>
"><?php 
echo ucfirst($post->info->type);
?>
 Repo</a></div>
						</li>
						<li>
							<div style="float:left;margin-right: 5px;"><i class="icon-license">l</i></div>
							<div style="float:left;width:185px;"><?php 
echo _n(" ", "", count($post->info->licenses));
?>
 <?php 
echo AddonCatalogPlugin::name_url_list($post->info->licenses);
?>
</div>
						</li>
						<?php 
if (count($post->tags) > 0) {
    ?>
						<li>
							<div style="float:left;margin-right: 5px;"><i class="icon-tags">t</i></div>
							<div style="float:left;width:185px;">
								<?php 
    if (count($post->tags) > 0) {
        echo _t('%s', array(Format::tag_and_list($post->tags, ', ', ', ')));
    }
    ?>
							</div>