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,15 @@
1
+<?php $this->extend('block_searchable'); ?>
2
+<?php $this->block('content'); ?>
3
+<div class="text--wrapper <?php if ($this->addImage) : ?>with-image image-<?php echo $this->floating; ?><?php endif; ?> ">
4
+  <?php if ($this->addImage) : ?>
5
+    <div class="image">
6
+      <?php $this->insert('image', $this->arrData); ?>
7
+    </div>
8
+  <?php endif; ?>
9
+  <?php if ($this->text) : ?>
10
+    <div class="text">
11
+      <?= $this->text ?>
12
+    </div>
13
+  <?php endif; ?>
14
+</div>
15
+<?php $this->endblock(); ?>
0 16
\ No newline at end of file