Browse code

Update remote

Benjamin Roth authored on24/03/2023 11:24:53
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,26 @@
1
+<?php $this->extend('block_searchable'); ?>
2
+
3
+<?php $this->block('content'); ?>
4
+
5
+
6
+{{insert_module::81}}
7
+
8
+
9
+<?php if ($this->message) : ?>
10
+    <p class="<?php echo $this->type; ?> message"><?php echo $this->message; ?></p>
11
+<?php endif; ?>
12
+<?php if (!empty($this->products)) : ?>
13
+
14
+    <div class="product_list row g-3 justify-content-center">
15
+
16
+        <?php foreach ($this->products as $product) : ?>
17
+            <div<?php echo $product['cssID']; ?>
18
+                    class="col-12 col-md-6 col-lg-4 col-xxl-3 <?php echo $product['class']; ?>">
19
+                <?php echo $product['html']; ?>
20
+            </div>
21
+        <?php endforeach; ?>
22
+    </div>
23
+    <?php echo $this->pagination; ?>
24
+<?php endif; ?>
25
+
26
+<?php $this->endblock(); ?>
0 27
\ No newline at end of file