OwlCyberSecurity - MANAGER
Edit File: blog_links.php
<?php /** * @version $Id: blog_links.php 20196 2011-01-09 02:40:25Z ian $ * @package Joomla.Site * @subpackage com_content * @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // no direct access defined('_JEXEC') or die; ?> <div class="items-more"> <h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES'); ?></h3> <ul class="nav nav-tabs nav-stacked"> <?php foreach ($this->link_items as &$item) : ?> <li> <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid)); ?>"><?php echo $item->title; ?></a> </li> <?php endforeach; ?> </ul> </div>