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,23 @@
1
+<form class="iso--product-box variant-slider" action="<?= $this->action; ?>" id="<?= $this->formId; ?>" name="iso<?= rand(); ?>" method="post" enctype="<?= $this->enctype; ?>">
2
+    <div class="formbody" itemscope itemtype="http://schema.org/Product">
3
+        <input type="hidden" name="FORM_SUBMIT" value="<?= $this->formSubmit; ?>">
4
+        <input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}">
5
+        <input type="hidden" name="AJAX_PRODUCT" value="<?= $this->product_id; ?>">
6
+        <input type="hidden" name="AJAX_MODULE" value="<?= $this->module_id; ?>">
7
+
8
+
9
+        <?= $this->getGallery('images')->generateMainImage(); ?>
10
+
11
+        <h3 itemprop="name">
12
+            <a href="<?= $this->href; ?>" title="<?= $this->label_detail; ?>"><?= $this->highlightKeywords($this->generateAttribute('name')); ?></a>
13
+        </h3>
14
+
15
+
16
+        <div class="details mt-2 pb-1">
17
+            <a class="btn btn-outline-primary" href="<?= $this->href; ?>" title="<?= $this->label_detail; ?>">mehr
18
+                Info</a>
19
+        </div>
20
+
21
+
22
+    </div>
23
+</form>
0 24
\ No newline at end of file