Example #1
0
    echo $this->escape($this->params->get('page_subheading'));
    ?>
</h2>
	<?php 
}
?>

	<?php 
if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) {
    ?>
		<div class="subtitle">
		<?php 
    if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) {
        ?>
			<?php 
        TemplateContentCategoryHelper::displayCategoryImage($this->category->getParams()->get('image'));
        ?>
		<?php 
    }
    ?>
		<?php 
    if ($this->params->get('show_description') && $this->category->description) {
        ?>
			<?php 
        echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category');
        ?>
		<?php 
    }
    ?>
		</div>
	<?php