1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,22 @@ |
1 |
+<?php $this->extend('block_searchable'); ?> |
|
2 |
+ |
|
3 |
+<?php $this->block('content'); ?> |
|
4 |
+ |
|
5 |
+<?php if($this->message): ?> |
|
6 |
+ |
|
7 |
+<p class="<?= $this->type ?> message"><?= $this->message ?></p> |
|
8 |
+<?php endif; ?> |
|
9 |
+<?php if(!empty($this->products)): ?> |
|
10 |
+ |
|
11 |
+<div class="product_list is-animated animate-children -move -move-top -fade"> |
|
12 |
+ |
|
13 |
+<?php foreach ($this->products as $product): ?> |
|
14 |
+<div<?= $product['cssID'] ?> class="<?= $product['class'] ?>"> |
|
15 |
+<?= $product['html'] ?> |
|
16 |
+</div> |
|
17 |
+<?php endforeach; ?> |
|
18 |
+</div> |
|
19 |
+<?= $this->pagination ?> |
|
20 |
+<?php endif; ?> |
|
21 |
+ |
|
22 |
+<?php $this->endblock(); ?> |