<?php $this->extend('block_searchable'); ?>

<?php $this->block('content'); ?>

<?php if($this->message): ?>

<p class="<?= $this->type ?> message"><?= $this->message ?></p>
<?php endif; ?>
<?php if(!empty($this->products)): ?>

<div class="product_list is-animated animate-children -move -move-top -fade">

<?php foreach ($this->products as $product): ?>
<div<?= $product['cssID'] ?> class="<?= $product['class'] ?>">
<?= $product['html'] ?>
</div>
<?php endforeach; ?>
</div>
<?= $this->pagination ?>
<?php endif; ?>

<?php $this->endblock(); ?>