| Current Path : /var/www/iplanru/data/old/www/i-plan.ru/media/zoo/applications/blog/templates/default/ | 
| Current File : /var/www/iplanru/data/old/www/i-plan.ru/media/zoo/applications/blog/templates/default/tag.php | 
<?php
/**
* @package   ZOO
* @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('Restricted access');
// include assets css/js
if (strtolower(substr($GLOBALS[($this->app->joomla->isVersion('1.5') ? 'mainframe' : 'app')]->getTemplate(), 0, 3)) != 'yoo') {
	$this->app->document->addStylesheet('assets:css/reset.css');
}
$this->app->document->addStylesheet($this->template->resource.'assets/css/zoo.css');
$css_class = $this->application->getGroup().'-'.$this->template->name;
?>
<div id="yoo-zoo" class="yoo-zoo <?php echo $css_class; ?> <?php echo $css_class.'-tag'; ?>">
	<?php if ($this->params->get('template.show_title')) : ?>
	<h3 class="tag-title"><?php echo JText::_('Articles tagged with').': '.$this->tag; ?></h3>
	<?php endif; ?>
	<?php
		// render items
		if (count($this->items)) {
			echo $this->partial('items');
		}
		
	?>
</div>