| Current Path : /var/www/modules/mod_jcomments_most_commented/tmpl/ |
| Current File : /var/www/modules/mod_jcomments_most_commented/tmpl/default.php |
<?php
// no direct access
defined('_JEXEC') or die;
?>
<?php if (!empty($list)) :?>
<ul class="jcomments-most-commented<?php echo $params->get('moduleclass_sfx'); ?>">
<?php foreach ($list as $item) : ?>
<li>
<a href="<?php echo $item->link; ?>#comments">
<?php if ($params->get('showCommentsCount')) :?>
<?php echo $item->title; ?> (+<?php echo $item->commentsCount; ?>)
<?php else : ?>
<?php echo $item->title; ?>
<?php endif; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>