Current Directory: /home/astoriaah/www/templates/yootheme/html/com_content/archive
Viewing File: /home/astoriaah/www/templates/yootheme/html/com_content/archive/default_items.php
<?php
defined('_JEXEC') or die;
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
// Parameter shortcuts
$params = $this->params;
foreach ($this->items as $item) {
// Article
$article = [
'article' => $item,
'params' => $params,
];
// Content
if ($params->get('show_intro')) {
$article['content'] = JHtml::_('string.truncate', $item->introtext, $params->get('introtext_limit'));
}
echo JHtml::_('render', 'article:archive', $article);
}
echo $this->pagination->getPagesLinks();