AAAAhome/academiac/www/templates/puntopc/html/com_content/archive/default_items.php 0000604 00000004222 15137175443 0024136 0 ustar 00 params);
?>
items as $i => $item) : ?>
-
article('archive', $item, $this->params);
$params = $article->getArticleViewParameters();
if (strlen($article->title)) {
$params['header-text'] = $this->escape($article->title);
if (strlen($article->titleLink))
$params['header-link'] = $article->titleLink;
}
// Change the order of "if" statements to change the order of article metadata header items.
if (strlen($article->created))
$params['metadata-header-icons'][] = "" . $article->createdDateInfo($article->created) . "";
if (strlen($article->modified))
$params['metadata-header-icons'][] = "" . $article->modifiedDateInfo($article->modified) . "";
if (strlen($article->published))
$params['metadata-header-icons'][] = "" . $article->publishedDateInfo($article->published) . "";
if (strlen($article->hits))
$params['metadata-header-icons'][] = $article->hitsInfo($article->hits);
// Build article content
$content = '';
if (strlen($article->intro))
$content .= $article->intro($article->intro);
$params['content'] = $content;
// Change the order of "if" statements to change the order of article metadata footer items.
if (strlen($article->category))
$params['metadata-footer-icons'][] = ""
. $article->categories($article->parentCategory, $article->parentCategoryLink, $article->category, $article->categoryLink)
. "";
// Render article
echo $article->article($params);
?>