Browse code

Initial commit

Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,19 @@
1
+<?php $this->extend('block_unsearchable'); ?>
2
+
3
+<?php $this->block('content'); ?>
4
+    <div class="offcanvas--basket-list">
5
+        <?php if ($this->message) : ?>
6
+            <p class="<?php echo $this->type; ?> message"><?php echo $this->message; ?></p>
7
+        <?php endif; ?>
8
+
9
+        <div class="offcanvas-header">
10
+            <a class="overlayNavClose mmenu_close_button" href="#">
11
+                <i class="fal fa-chevron-circle-left"></i>
12
+                <span>Weiter einkaufen</span>
13
+            </a>
14
+        </div>
15
+
16
+        <?php echo $this->products; ?>
17
+        <?php echo $this->custom; ?>
18
+    </div>
19
+<?php $this->endblock(); ?>
0 20
\ No newline at end of file