Live demo
PhP markup
<?php
/**
* @package Joomla.Site
* @subpackage mod_articles_category
* @Author web-eau.net
* @copyright Copyright (C) 2005 - 2018 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-group list-group-flush list-group-item-action category-module<?php echo $moduleclass_sfx; ?>">
<?php foreach ($list as $item) : ?>
<li class="list-group-item list-group-item-action py-2 list-unstyled">
<?php if ($params->get('link_titles') == 1) : ?>
<i class="fa fa-file-text-o mr-1"></i> <a class="mod-articles-category-title <?php echo $item->active; ?>" href="/<?php echo $item->link; ?>"><?php echo $item->title; ?></a>
<?php else : ?>
<?php echo $item->title; ?>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
<p class="py-2"><strong><i class="fa fa-arrow-circle-o-right"></i></strong> see all articles in category
<span class="mod-articles-category-category vert">
<?php echo $item->displayCategoryTitle; ?>
</span></p>
Download this override
override-articles-list.zipAlready downloaded 23 times