Current Path :
/
home
/
develito
/
.trash
/
v6
/
modules
/
mod_articles_popular
/
tmpl
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/.trash/v6/modules/mod_articles_popular/tmpl/default.php
<?php /** * @package Joomla.Site * @subpackage mod_articles_popular * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; if (!isset($list)) { if (isset($hitsDisabledMessage)) { echo $hitsDisabledMessage; } return; } ?> <ul class="mostread mod-list"> <?php foreach ($list as $item) : ?> <li itemscope itemtype="https://schema.org/Article"> <a href="<?php echo $item->link; ?>" itemprop="url"> <span itemprop="name"> <?php echo htmlspecialchars($item->title, ENT_QUOTES, 'UTF-8'); ?> </span> </a> </li> <?php endforeach; ?> </ul>