<?php /** * @package Joomla.Administrator * @subpackage mod_stats_admin * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; ?> <ul class="list-striped list-condensed stats-module<?php echo $moduleclass_sfx ?>"> <?php foreach ($list as $item) : ?> <li><span class="icon-<?php echo $item->icon; ?>" title="<?php echo $item->title; ?>" aria-hidden="true"></span> <?php echo $item->title; ?> <?php echo $item->data; ?></li> <?php endforeach; ?> </ul>