<?php $this->extend('block_searchable'); ?>

<?php $this->block('content'); ?>

<?php if($this->message): ?>
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<style>p {margin: 0 !important}</style>
<p class="<?php echo $this->type; ?> message"><?php echo $this->message; ?></p>
  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
    <span aria-hidden="true">&times;</span>
  </button>
</div>
<?php endif; ?>
<?php if(!empty($this->products)): ?>

<div class="product_list row no-gutters justify-content-between w-100">

<?php foreach ($this->products as $product): ?>
<div<?php echo $product['cssID']; ?> class="<?php echo $product['class']; ?> bg-white shadow-hover zoom">
<?php echo $product['html']; ?>
</div>
<?php endforeach; ?>
</div>
<?php echo $this->pagination; ?>
<?php endif; ?>

<?php $this->endblock(); ?>
