1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,52 @@ |
1 |
+<?php |
|
2 |
+if (TL_MODE == 'FE') { |
|
3 |
+ $GLOBALS['TL_CSS'][] = 'files/base/layout/css/elements/custom-elements/ce_rsce_row1start.min.css|static'; |
|
4 |
+} |
|
5 |
+?> |
|
6 |
+ |
|
7 |
+<div <?php echo $this->cssID; ?> class="content--element row-wrapper <?php echo $this->class; ?>"> |
|
8 |
+ |
|
9 |
+ <div class="container"> |
|
10 |
+ |
|
11 |
+ <?php if ($this->headline || $this->subline || $this->topline) : ?> |
|
12 |
+ <div class="ce--headline" |
|
13 |
+ data-aos="<?php if ($this->animation_type) : ?><?php echo $this->animation_type; ?><?php else : ?>animate__fadeInUp<?php endif; ?>"> |
|
14 |
+ |
|
15 |
+ <?php if ($this->topline) : ?> |
|
16 |
+ <span class="ce--topline"><?php echo $this->topline; ?></span> |
|
17 |
+ <?php endif; ?> |
|
18 |
+ |
|
19 |
+ <?php if ($this->headline) : ?> |
|
20 |
+ <<?php echo($this->hl); ?>> |
|
21 |
+ <?php echo($this->headline); ?> |
|
22 |
+ </<?php echo($this->hl); ?>> |
|
23 |
+ <?php endif; ?> |
|
24 |
+ <?php if ($this->subline) : ?> |
|
25 |
+ <span class="ce--subline" |
|
26 |
+ data-aos="<?php if ($this->animation_type) : ?><?php echo $this->animation_type; ?><?php else : ?>animate__fadeInUp<?php endif; ?>"><?php echo $this->subline; ?></span> |
|
27 |
+ <?php endif; ?> |
|
28 |
+ </div> |
|
29 |
+ <?php endif; ?> |
|
30 |
+ |
|
31 |
+ <div class="row <?php if ($this->mid_element_content): ?>with-mid-content<?php endif; ?> |
|
32 |
+<?= $this->styleManager->get('spaltenausrichtung', ['ausrichtung']); ?> |
|
33 |
+<?= $this->styleManager->get('spaltenausrichtung', ['ausrichtung_horizontal']); ?> |
|
34 |
+<?= $this->styleManager->get('spaltenausrichtung', ['umkehren']); ?> |
|
35 |
+ |
|
36 |
+<?php if ($this->styleManager->get('spaltenabstand', ['spaltenabstaende']) && (!$this->styleManager->get('spaltenabstand', ['spaltenabstaende_x']) && !$this->styleManager->get('spaltenabstand', ['spaltenabstaende_y']))): ?> |
|
37 |
+<?= $this->styleManager->get('spaltenabstand', ['spaltenabstaende']); ?> |
|
38 |
+<?php else: ?> |
|
39 |
+<?= $this->styleManager->get('spaltenabstand', ['spaltenabstaende_x']); ?> |
|
40 |
+<?= $this->styleManager->get('spaltenabstand', ['spaltenabstaende_y']); ?> |
|
41 |
+<?php endif; ?> |
|
42 |
+" |
|
43 |
+ data-aos="<?php if ($this->animation_type) : ?><?php echo $this->animation_type; ?><?php else : ?>animate__fadeInUp<?php endif; ?>"> |
|
44 |
+ |
|
45 |
+ <?php if ($this->mid_element_content): ?> |
|
46 |
+ <div class="row-mid-content"> |
|
47 |
+ <div class="row-mid-content--inner"> |
|
48 |
+ <?= $this->mid_element_content; ?> |
|
49 |
+ </div> |
|
50 |
+ </div> |
|
51 |
+ <?php endif; ?> |
|
52 |
+ |