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,273 @@
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
+<script type="application/ld+json">
16
+    {
17
+        "@context": "https://schema.org/",
18
+        "@type": "JobPosting",
19
+        "title": "<?= $this->title; ?>",
20
+        "description": "<?= $this->description_1; ?>",
21
+        "identifier": {
22
+            "@type": "PropertyValue",
23
+            "name": "cosee GmbH"
24
+        },
25
+        "datePosted": "<?= date(DATE_ISO8601, strtotime($this->tstamp)); ?>",
26
+        "employmentType": "FULL_TIME",
27
+        "hiringOrganization": {
28
+            "@type": "Organization",
29
+            "name": "cosee GmbH",
30
+            "sameAs": "https://www.cosee.biz/",
31
+            "logo": "{{env::url}}/files/base/layout/img/logo.svg"
32
+        },
33
+        "jobLocation": {
34
+            "@type": "Place",
35
+            "address": {
36
+                "@type": "PostalAddress",
37
+                "streetAddress": "Mina-Rees-Straße 8",
38
+                "addressLocality": "Darmstadt",
39
+                "addressRegion": "HE",
40
+                "postalCode": "64295",
41
+                "addressCountry": "DE"
42
+            }
43
+        }
44
+    }
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+</script>
65
+
66
+
67
+<div class="content--element ce_rsce_boxenfeld mt-4 <?= $this->cssClass ?>">
68
+    <div class="ce--inner container ">
69
+
70
+        <div class="ce--boxenfeld ">
71
+            <div class="boxes--outer">
72
+                <div class="row gy-0">
73
+
74
+                    <?php if ($this->content_image_1["src"]): ?>
75
+                        <div class="col-12 col-lg-6">
76
+                            <img class="box--image lazy" data-src="<?= $this->content_image_1["src"]; ?>">
77
+                        </div>
78
+                    <?php endif; ?>
79
+                    <div class="col-12 col-lg-6">
80
+                        <div class="box--content"
81
+                             data-aos="animate__fadeInUp"
82
+                             style="position: relative; top: 75px">
83
+                            <div class="box--headline">
84
+                                <h1><?= $this->title; ?> <span><?= $this->subtitle; ?></span></h1>
85
+                            </div>
86
+                            <?php if ($this->description_1): ?>
87
+                                <div class="box--text">
88
+                                    <?= $this->description_1; ?>
89
+                                    <div class="box--button">
90
+                                        <a class="btn btn-primary btn-lg" href="#ansprechpartner">Bewirb dich jetzt!</a>
91
+                                    </div>
92
+                                </div>
93
+                            <?php endif; ?>
94
+                        </div>
95
+                    </div>
96
+                </div>
97
+
98
+            </div>
99
+        </div>
100
+    </div>
101
+</div>
102
+
103
+<div class="content--element three-cols--content">
104
+    <div class="ce--inner container">
105
+
106
+        <div class="ce--headline" data-aos="animate__fadeIn">
107
+            <h2><?= $this->content_headline_1; ?></h2>
108
+        </div>
109
+
110
+        <div class="row gx-lg-4">
111
+            <?php if ($this->content_image_2): ?>
112
+                <div class="col-lg-4" data-aos="animate__fadeInLeft">
113
+                    <?= $this->content_image_2; ?>
114
+                </div>
115
+            <?php endif; ?>
116
+            <?php if ($this->description_2): ?>
117
+                <div class="col-lg-8" data-aos="animate__fadeInRight">
118
+                    <div class="two-column-text">
119
+                        <?= $this->description_2; ?>
120
+                    </div>
121
+                </div>
122
+            <?php endif; ?>
123
+        </div>
124
+    </div>
125
+</div>
126
+
127
+<?php if ($this->selected_benefits): ?>
128
+    <div class="content--element benefits bg-dark text-center">
129
+        <div class="ce--inner container">
130
+            <div class="ce--headline mb-3">
131
+                <h2 data-aos="animate__fadeIn">Das bieten wir dir</h2>
132
+            </div>
133
+            <div class="row gx-lg-5 gy-3 justify-content-center">
134
+                <?php foreach ($this->selected_benefits as $benefit) : ?>
135
+                    <div class="col-lg-4 col-lg-3">
136
+
137
+                        <div class="benefit--box" data-aos="animate__fadeInUp">
138
+                            <div class="benefit-box--upper">
139
+                                <?= $benefit["content_image_1"]; ?>
140
+                            </div>
141
+                            <div class="benefit-box--lower">
142
+                                <div class="benefit--title">
143
+                                    <?= $benefit["title"]; ?>
144
+                                </div>
145
+
146
+                                <div class="benefit--desc">
147
+                                    <?= $benefit["description_1"]; ?>
148
+                                </div>
149
+                            </div>
150
+                        </div>
151
+                    </div>
152
+                <?php endforeach; ?>
153
+            </div>
154
+        </div>
155
+    </div>
156
+<?php endif; ?>
157
+
158
+<div class="content--element testimonials--top">
159
+    <div class="ce--inner container">
160
+        <div class="row gx-lg-4 flex-lg-row-reverse">
161
+            <div class="col-lg-4">
162
+                <div class="testimonial-person--box mb-3 mb-lg-0" data-aos="animate__fadeInRight">
163
+                    <span class="h2"><?= $this->testimonial_name; ?></span>
164
+                    <div class="testimonial--personal-note">
165
+                        <?= $this->testimonial_description; ?>
166
+                    </div>
167
+                </div>
168
+            </div>
169
+            <div class="col-lg-8">
170
+                <h2 data-aos="animate__fadeIn">
171
+                    <?= $this->content_headline_2; ?>
172
+                </h2>
173
+                <div class="row gx-lg-4" data-aos="animate__fadeInLeft">
174
+                    <div class="col-lg-6">
175
+                        <?= $this->description_3; ?>
176
+                    </div>
177
+                    <div class="col-lg-6">
178
+                        <?= $this->description_4; ?>
179
+                    </div>
180
+                </div>
181
+            </div>
182
+
183
+        </div>
184
+    </div>
185
+</div>
186
+
187
+
188
+<div class="content--element ce_rsce_boxenfeld testimonials--bottom">
189
+    <div class="ce--inner container">
190
+
191
+        <div class="ce--boxenfeld">
192
+            <div class="boxes--outer">
193
+                <div class="row gy-0 flex-row-reverse">
194
+                    <?php if ($this->content_image_3["src"]): ?>
195
+                        <div class="col-12 col-lg-6">
196
+                            <img class="lazy box--image" data-src="<?= $this->content_image_3["src"]; ?>">
197
+                        </div>
198
+                    <?php endif; ?>
199
+                    <div class="col-12 col-lg-6">
200
+                        <div class="box--content"
201
+                             data-aos="animate__fadeInUp"
202
+                             style="position: relative; top: 25px">
203
+                            <div class="box--headline">
204
+                                <h2>
205
+                                    <?= $this->content_headline_3; ?> </h2>
206
+                            </div>
207
+                            <div class="box--text">
208
+                                <?= $this->description_5; ?>
209
+                            </div>
210
+                        </div>
211
+                    </div>
212
+                </div>
213
+            </div>
214
+
215
+        </div>
216
+    </div>
217
+</div>
218
+
219
+
220
+<?php if ($this->selected_contact_persons): ?>
221
+    <div class="content--element contact--persons">
222
+        <div class="ce--inner container" id="ansprechpartner">
223
+            <h2 data-aos="animate__fadeIn">Ansprechpartner</h2>
224
+
225
+            <div class="contact--person" data-aos="animate__fadeInUp">
226
+                <div class="row gx-lg-4 align-items-center">
227
+                    <?php foreach ($this->selected_contact_persons as $person) : ?>
228
+
229
+                        <?php if ($person["image"]): ?>
230
+                            <div class="col-md-3 mb-3 mb-md-0 col-xxl-2">
231
+                                <?= $person["image"]; ?>
232
+                            </div>
233
+                        <?php endif; ?>
234
+                        <div class="col">
235
+                            <div class="contact-person--name">
236
+                                <?= $person["title"]; ?>
237
+                            </div>
238
+                            <?php if ($person["department"]): ?>
239
+                                <div class="contact-person--department">
240
+                                    <?= $person["department"]; ?>
241
+                                </div>
242
+                            <?php endif; ?>
243
+                            <?php if ($person["description"]): ?>
244
+                                <div class="contact-person--description">
245
+                                    <?= $person["description"]; ?>
246
+                                </div>
247
+                            <?php endif; ?>
248
+                            <?php if ($person["phone"]): ?>
249
+                                <div class="contact-person--phone">
250
+                                    <a href="tel:<?= $person["phone"]; ?>"><i
251
+                                                class="fas fa-phone-alt"></i> <?= $person["phone"]; ?></a>
252
+                                </div>
253
+                            <?php endif; ?>
254
+                            <?php if ($person["email"]): ?>
255
+                                <div class="contact-person--email">
256
+                                    <a href="mailto:<?= $person["email"]; ?>"><i
257
+                                                class="fas fa-envelope"></i> <?= $person["email"]; ?></a>
258
+                                </div>
259
+                            <?php endif; ?>
260
+                        </div>
261
+                    <?php endforeach; ?>
262
+                </div>
263
+            </div>
264
+        </div>
265
+    </div>
266
+<?php endif; ?>
267
+
268
+<div class="container text-end">
269
+    <?php if ($this->hasGoBackLink): ?>
270
+        <p class="back"><a class="btn btn-outline-primary"
271
+                           href="<?= $this->goBackLink ?>"><?= $this->goBackLabel; ?></a></p>
272
+    <?php endif; ?>
273
+</div>
0 274
\ No newline at end of file