1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,37 @@ |
1 |
+<!-- start |
|
2 |
+ * |
|
3 |
+ * The code below should not be used. You can replace it with your own code. Just follow the instruction: |
|
4 |
+ * |
|
5 |
+ * All catalog values are located in the "$this" Variable. Access individual values with the arrow operator. |
|
6 |
+ * For Example: |
|
7 |
+ * Output simple string: $this->yourFieldname |
|
8 |
+ * Format numbers: number_format( $this->yourFieldname, 2, ',', '.' ) € |
|
9 |
+ * Output joins: $this->tablenameYourFieldname |
|
10 |
+ * Output array: implode ( ', ', $this->yourFieldname ) |
|
11 |
+ * Output associative array: implode( ', ', array_map( function( $arrValue ) { return $arrValue['title'] }, $this->yourFieldname ) ) |
|
12 |
+ * |
|
13 |
+--> |
|
14 |
+ |
|
15 |
+<!-- end --> |
|
16 |
+ |
|
17 |
+ |
|
18 |
+<div class="col-12 col-md-4"> |
|
19 |
+ <div class="project--box" data-aos="animate__fadeInUp" |
|
20 |
+ style="background: linear-gradient(black, black),url(<?= $this->listing_image["src"]; ?>) center center no-repeat; background-size: cover;"> |
|
21 |
+ |
|
22 |
+ |
|
23 |
+ <div class="project-box--flex-wrapper"> |
|
24 |
+ <div class="project-box--inner"> |
|
25 |
+ <a href="<?= $this->masterUrl ?>"></a> |
|
26 |
+ <div class="project--title"> |
|
27 |
+ <?= $this->title; ?> |
|
28 |
+ </div> |
|
29 |
+ <div class="project--more-button"> |
|
30 |
+ <a class="btn btn-primary" href="<?= $this->masterUrl ?>">Mehr erfahren</a> |
|
31 |
+ </div> |
|
32 |
+ </div> |
|
33 |
+ </div> |
|
34 |
+ |
|
35 |
+ </div> |
|
36 |
+</div> |
|
37 |
+ |