Current File : /home/karenpetzb/application/modules/default/views/scripts/produits/recherche.phtml

<div id="productContainer" class="col-md-12 noPadding">

<?php 
$listProducts = array();
$listProducts = $this->listSearchPages;
$listCat = array();
$listCat = $this->listCat;

echo $this->render("/produits/ajaxfacets.phtml");
?>

<div class="col-md-12 prod-detail-title-box noPadding" id="prod-search-title">
	<h1 class="prod-detail-title ">
		<?php if (sizeof($listProducts) == 0) { 
			if (strlen($this->searchKey) > 0) { ?>
			<span >Votre recherche de "<span ><?php echo $this->searchKey; ?></span>" n'a retourn�e aucun r�sultats </span>
			<?php } else { ?>
			<span >Votre recherche n'a retourn�e aucun r�sultats </span>
			<?php }
		} else { ?>
			<span>R�SULTATS DE LA RECHERCHE : "<span ><?php echo $this->searchKey; ?></span>"</span>
		<?php } ?>
	</h1>
</div>


  <div id="productContents">
    <?php
  if (!empty($listProducts)) { 
	  foreach ($listProducts as $row) {
		  $this->currentData = $row;
		  echo $this->render("/produits/ajaxshowproductbox.phtml");
	  } 
  } 
  ?>
  </div>

  <script type="text/javascript">
  $(document).ready(function() {
    initSearch();
    });
  </script>

</div>