1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,21 @@ |
1 |
+<?php $this->extend('block_unsearchable'); ?> |
|
2 |
+ |
|
3 |
+<?php $this->block('content'); ?> |
|
4 |
+ |
|
5 |
+ <div class="dropdown--basket"> |
|
6 |
+ <div class="dropdown"> |
|
7 |
+ <span class="open-dropdown" data-bs-toggle="dropdown" aria-expanded="false"><i |
|
8 |
+ class="fal fa-shopping-cart"></i> {{cart::quantity}}</span> |
|
9 |
+ <div class="dropdown-menu dropdown-menu-end"> |
|
10 |
+ <div class="mini--basket"> |
|
11 |
+ <?php if ($this->message) : ?> |
|
12 |
+ <p class="<?php echo $this->type; ?> message"><?php echo $this->message; ?></p> |
|
13 |
+ <?php endif; ?> |
|
14 |
+ |
|
15 |
+ <?php echo $this->products; ?> |
|
16 |
+ <?php echo $this->custom; ?> |
|
17 |
+ </div> |
|
18 |
+ </div> |
|
19 |
+ </div> |
|
20 |
+ </div> |
|
21 |
+<?php $this->endblock(); ?> |
|
0 | 22 |
\ No newline at end of file |