| Current Path : /home/sunflowe/www/templates/yoo_revista/warp/systems/joomla/layouts/com_content/category/ |
| Current File : /home/sunflowe/www/templates/yoo_revista/warp/systems/joomla/layouts/com_content/category/blog.php |
<?php
/**
* @package Warp Theme Framework
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
// no direct access
defined('_JEXEC') or die;
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
?>
<div id="system">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1 class="title"><?php echo $this->escape($this->params->get('page_heading')); ?></h1>
<?php endif; ?>
<?php if ($this->params->get('page_subheading')) : ?>
<h2 class="subtitle"><?php echo $this->escape($this->params->get('page_subheading')); ?></h2>
<?php endif; ?>
<?php if ($this->params->get('show_category_title', 1)) : ?>
<h1 class="title"><?php echo $this->category->title;?></h1>
<?php endif; ?>
<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) :?>
<div class="description">
<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
<img src="<?php echo $this->category->getParams()->get('image'); ?>" alt="<?php echo $this->category->getParams()->get('image'); ?>" class="size-auto align-right" />
<?php endif; ?>
<?php if ($this->params->get('show_description') && $this->category->description) echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
</div>
<?php endif; ?>
<?php if ($this->params->get('show_tags', 1) && !empty($this->category->tags->itemTags)) : ?>
<?php $this->category->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
<?php echo $this->category->tagLayout->render($this->category->tags->itemTags); ?>
<?php endif; ?>
<?php
// init vars
$articles = '';
// leading articles
foreach ($this->lead_items as $item) {
$this->item = $item;
$articles .= '<div class="grid-box width100 leading">'.$this->loadTemplate('item').'</div>';
}
// intro articles
$columns = array();
$i = 0;
foreach ($this->intro_items as $item) {
$column = $i++ % $this->params->get('num_columns', 2);
if (!isset($columns[$column])) {
$columns[$column] = '';
}
$this->item = $item;
$columns[$column] .= $this->loadTemplate('item');
}
// render intro columns
if ($count = count($columns)) {
for ($i = 0; $i < $count; $i++) {
$articles .= '<div class="grid-box width'.intval(100 / $count).'">'.$columns[$i].'</div>';
}
}
if ($articles) {
echo '<div class="items items-col-'.$count.' grid-block">'.$articles.'</div>';
}
?>
<?php if (!empty($this->link_items)) : ?>
<div class="item-list">
<h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES'); ?></h3>
<ul>
<?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>
<?php endif; ?>
<?php if (($this->params->def('show_pagination', 1) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->get('pages.total') > 1)) : ?>
<?php echo $this->pagination->getPagesLinks(); ?>
<?php endif; ?>
</div>