| Current Path : /home/helpink/www/libraries/astroid/framework/html/com_content/category/ |
| Current File : /home/helpink/www/libraries/astroid/framework/html/com_content/category/blog_links.php |
<?php
/**
* @package Astroid Framework
* @author Astroid Framework https://astroidframe.work
* @copyright Copyright (C) 2023 AstroidFrame.work.
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\Component\Content\Site\Helper\RouteHelper;
?>
<h3><?php echo Text::_('COM_CONTENT_MORE_ARTICLES'); ?></h3>
<ul class="list-group">
<?php foreach ($this->link_items as &$item) : ?>
<li class="list-group-item">
<a href="<?php echo Route::_(RouteHelper::getArticleRoute($item->slug, $item->catid, $item->language)); ?>"><?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ul>