Your IP : 216.73.216.43


Current Path : /home/cbequiperp/www/components/com_flexicontent/tmpl_common/
Upload File :
Current File : /home/cbequiperp/www/components/com_flexicontent/tmpl_common/category_category_html5.php

<?php
defined( '_JEXEC' ) or die( 'Restricted access' );

$catTitleHeaderLevel = ( $this->params->get( 'show_page_heading', 1 ) && $this->params->get('show_cat_title', 1) ) ? '2' : '1'; 
// Note:in Some editors like Dreamweaver will automatically set a closing tag > after </h when opening the document. So look for h>  and replaced it with h
?>

<div class="floattext">
	<?php if ($this->params->get('show_cat_title', 1)) : ?>
    <header>
		<?php echo "<h".$catTitleHeaderLevel; ?> class="cattitle">
		<?php echo $this->escape($this->category->title); ?>
		<?php echo "</h". $catTitleHeaderLevel; ?>>
    </header>
	<?php endif; ?>

	<?php if ($this->params->get('show_description_image', 1) && $this->category->image) : ?>
	<figure class="catimg">
		<?php echo $this->category->image; ?>
	</figure>
	<?php endif; ?>
	
	<?php if ($this->params->get('show_description', 1) && $this->category->description) : ?>
	<div class="catdescription">
		<?php echo $this->category->description; ?>
	</div>
	<?php endif; ?>
</div>