Files @ 8a01940f05b5
Branch filter:

Location: hot67beta/components/com_content/views/section/tmpl/blog_links.php

root@protofusion.org
Removed test file.
<?php defined('_JEXEC') or die('Restricted access'); ?>
<div>
	<strong><?php echo JText::_( 'More Articles...' ); ?></strong>
</div>
<ul>
<?php
 foreach ($this->links as $link) : ?>
	<li>
		<a class="blogsection" href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($link->slug, $link->catslug, $link->sectionid)); ?>">
			<?php echo $link->title; ?></a>
	</li>
<?php endforeach; ?>
</ul>