Files @ c7d7e38b2269
Branch filter:

Location: hot67beta/modules/mod_sections/tmpl/default.php

root@protofusion.org
Initial import of the site.
<?php // no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<ul class="sections<?php echo $params->get('moduleclass_sfx'); ?>"><?php
foreach ($list as $item) :
?>
<li>
	<a href="<?php echo JRoute::_(ContentHelperRoute::getSectionRoute($item->id)); ?>">
		<?php echo $item->title;?></a>
</li>
<?php endforeach; ?>
</ul>