git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
11 lines
334 B
PHP
11 lines
334 B
PHP
<?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>
|