Tweet

Tuesday, 15 January 2013

default(tmpl)


<?php
/**
 * @package Joomla.Site
 * @subpackage mod_articles_archive
 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license GNU General Public License version 2 or later; see LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;
?>

<ul>
<?php foreach ($getAll as $row) :
?>
<li>
<a href="#">
<?php echo $row->name; ?>
</a>
</li>
<?php endforeach; ?>
</ul>

No comments:

Post a Comment