| Current Path : /home/sunflowe/www/templates/yoo_revista/warp/systems/joomla/layouts/com_finder/search/ |
| Current File : /home/sunflowe/www/templates/yoo_revista/warp/systems/joomla/layouts/com_finder/search/default.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
*/
defined('_JEXEC') or die;
JHtml::_('behavior.framework');
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
JHtml::stylesheet('com_finder/finder.css', false, true, false);
?>
<div id="system">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1 class="title">
<?php if ($this->escape($this->params->get('page_heading'))) : ?>
<?php echo $this->escape($this->params->get('page_heading')); ?>
<?php else : ?>
<?php echo $this->escape($this->params->get('page_title')); ?>
<?php endif; ?>
</h1>
<?php endif; ?>
<?php
if ($this->params->get('show_search_form', 1)) {
echo $this->loadTemplate('form');
}
?>
<?php
if ($this->query->search === true) {
echo $this->loadTemplate('results');
}
?>
</div>