| Current Path : /home/megadansyp/www/plugins/system/t3/base-bs3/html/com_content/category/ |
| Current File : /home/megadansyp/www/plugins/system/t3/base-bs3/html/com_content/category/blog_links.php |
<?php
/**
* @package Joomla.Site
* @subpackage com_content
*
* @copyright Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
?>
<section class="items-more">
<h3><?php echo Text::_('COM_CONTENT_MORE_ARTICLES'); ?></h3>
<ol class="nav">
<?php foreach ($this->link_items as &$item) : ?>
<li>
<a href="<?php echo Route::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>">
<?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ol>
</section>