hr-design-system-handlebars 1.82.11 → 1.83.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/dist/assets/index.css +92 -56
- package/dist/assets/js/components/dataPolicySettings/dataPolicySettingsDs.feature.js +29 -29
- package/dist/views/components/content/copytext/components/audio.hbs +2 -2
- package/dist/views/components/content/copytext/components/audioeventlivestream.hbs +2 -2
- package/dist/views/components/content/copytext/components/cite.hbs +1 -1
- package/dist/views/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/dist/views/components/content/copytext/components/image/image.hbs +4 -4
- package/dist/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/dist/views/components/content/copytext/components/podcastepisode.hbs +1 -1
- package/dist/views/components/content/copytext/components/posterteaser.hbs +1 -1
- package/dist/views/components/content/copytext/components/video/video.hbs +2 -2
- package/dist/views/components/content/copytext/components/videolivestream.hbs +2 -2
- package/dist/views/components/page/base/page_header.hbs +1 -1
- package/dist/views/components/page/components/metadatabox.hbs +1 -1
- package/dist/views/components/page/story/story_article.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/audio.hbs +2 -2
- package/dist/views_static/components/content/copytext/components/audioeventlivestream.hbs +2 -2
- package/dist/views_static/components/content/copytext/components/cite.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/image/image.hbs +4 -4
- package/dist/views_static/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/dist/views_static/components/content/copytext/components/podcastepisode.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/posterteaser.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/video/video.hbs +2 -2
- package/dist/views_static/components/content/copytext/components/videolivestream.hbs +2 -2
- package/dist/views_static/components/page/base/page_header.hbs +1 -1
- package/dist/views_static/components/page/components/metadatabox.hbs +1 -1
- package/dist/views_static/components/page/story/story_article.hbs +1 -1
- package/package.json +1 -1
- package/src/assets/css/custom-utilities.css +21 -14
- package/src/assets/fixtures/content/copytext/copytext_audio.json +116 -0
- package/src/assets/fixtures/content/copytext/copytext_audio_livestream.json +115 -0
- package/src/assets/fixtures/content/copytext/copytext_cite.json +65 -7
- package/src/assets/fixtures/content/copytext/copytext_downloadbox.json +83 -11
- package/src/assets/fixtures/content/copytext/copytext_filedownload.json +86 -15
- package/src/assets/fixtures/content/copytext/copytext_image.json +92 -0
- package/src/assets/fixtures/content/copytext/copytext_infobox.json +65 -16
- package/src/assets/fixtures/content/copytext/copytext_livestream.json +84 -0
- package/src/assets/fixtures/content/copytext/copytext_media_components.json +1291 -0
- package/src/assets/fixtures/content/copytext/copytext_non_media_components.json +1058 -0
- package/src/assets/fixtures/content/copytext/copytext_podcastepisode.json +84 -0
- package/src/assets/fixtures/content/copytext/copytext_posterteaser.json +82 -7
- package/src/assets/fixtures/content/copytext/copytext_video.json +161 -0
- package/src/stories/views/components/content/copytext/components/audio.hbs +2 -2
- package/src/stories/views/components/content/copytext/components/audioeventlivestream.hbs +2 -2
- package/src/stories/views/components/content/copytext/components/cite.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/common/paragraphbox_wrapper.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/image/image.hbs +4 -4
- package/src/stories/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/src/stories/views/components/content/copytext/components/podcastepisode.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/posterteaser.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/video/video.hbs +2 -2
- package/src/stories/views/components/content/copytext/components/videolivestream.hbs +2 -2
- package/src/stories/views/components/content/copytext/copytext.stories.js +21 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_audio.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_audio_livestream.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_cite.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_downloadbox.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_filedownload.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_image.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_infobox.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_livestream.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_media_components.json +1 -0
- package/src/stories/views/components/content/copytext/fixtures/copytext_non_media_components.json +1 -0
- package/src/stories/views/components/content/copytext/fixtures/copytext_podcastepisode.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_posterteaser.json +1 -1
- package/src/stories/views/components/content/copytext/fixtures/copytext_video.json +1 -1
- package/src/stories/views/components/dataPolicySettings/dataPolicySettingsDs.feature.js +29 -29
- package/src/stories/views/components/page/base/page_header.hbs +1 -1
- package/src/stories/views/components/page/components/metadatabox.hbs +1 -1
- package/src/stories/views/components/page/story/story_article.hbs +1 -1
- package/tailwind.config.js +3 -0
|
@@ -0,0 +1,1058 @@
|
|
|
1
|
+
{
|
|
2
|
+
"copytextParagraph": [
|
|
3
|
+
{
|
|
4
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
"isParagraph": true,
|
|
8
|
+
"text": {
|
|
9
|
+
"split": [
|
|
10
|
+
{
|
|
11
|
+
"isUl": true,
|
|
12
|
+
"text": "<li>Lorem ipsum dolor sit amet</li><li>At vero eos et accusam et justo</li><li>Stet clita kasd gubergren</li>"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"isOl": true,
|
|
16
|
+
"text": "<li>Lorem ipsum dolor sit amet</li><li>At vero eos et accusam et justo</li><li>Stet clita kasd gubergren</li>"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"isHeadline": true,
|
|
26
|
+
"text": "Zwischenüberschrift"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"isHeadline": true,
|
|
33
|
+
"text": "Copytext mit Download-Box"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"isDownloadBox": true,
|
|
40
|
+
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.",
|
|
41
|
+
"paragraphProperties": [
|
|
42
|
+
{
|
|
43
|
+
"title": "Download-Box volle Breite",
|
|
44
|
+
"showFullSize": true
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"paragraphbox": {
|
|
48
|
+
"downloadBoxItems": [
|
|
49
|
+
{
|
|
50
|
+
"isEpgPdfExport": false,
|
|
51
|
+
"url": "Download-Url-1",
|
|
52
|
+
"trackingData": {
|
|
53
|
+
"secondLevelId": "2",
|
|
54
|
+
"pageName": "Page-Name"
|
|
55
|
+
},
|
|
56
|
+
"downloadBoxMetadata": {
|
|
57
|
+
"title": "Download-File-1, Lorem ipsum dolor sit amet, consetetur sadipscing elitr",
|
|
58
|
+
"displaySuffix": "JPG",
|
|
59
|
+
"displaySize": "175kb"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"isEpgPdfExport": false,
|
|
64
|
+
"url": "Download-Url-2",
|
|
65
|
+
"trackingData": {
|
|
66
|
+
"secondLevelId": "2, Lorem ipsum dolor sit amet, consetetur sadipscing elitr",
|
|
67
|
+
"pageName": "Page-Name"
|
|
68
|
+
},
|
|
69
|
+
"downloadBoxMetadata": {
|
|
70
|
+
"title": "Download-File-2, Lorem ipsum dolor sit amet, consetetur sadipscing elitr",
|
|
71
|
+
"displaySuffix": "MP3",
|
|
72
|
+
"displaySize": "3mb"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"isEpgPdfExport": false,
|
|
77
|
+
"url": "Download-Url-3",
|
|
78
|
+
"trackingData": {
|
|
79
|
+
"secondLevelId": "2",
|
|
80
|
+
"pageName": "Page-Name"
|
|
81
|
+
},
|
|
82
|
+
"downloadBoxMetadata": {
|
|
83
|
+
"title": "Download-File-3",
|
|
84
|
+
"displaySuffix": "PDF",
|
|
85
|
+
"displaySize": "48kb"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"isHeadline": true,
|
|
96
|
+
"text": "Downloadbox in halber Breite unter Bild in voller Breite"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"paragraphBoxItem": {
|
|
100
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
101
|
+
"@->contentpath": "copytext_image_100",
|
|
102
|
+
"@->replaceToken": [
|
|
103
|
+
{
|
|
104
|
+
"@->token": "image",
|
|
105
|
+
"@->value": "buchmesse-fahnen-102"
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"isDownloadBox": true,
|
|
112
|
+
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.",
|
|
113
|
+
"paragraphProperties": [
|
|
114
|
+
{
|
|
115
|
+
"title": "Download-Box halbe Breite",
|
|
116
|
+
"showFullSize": false
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"paragraphbox": {
|
|
120
|
+
"downloadBoxItems": [
|
|
121
|
+
{
|
|
122
|
+
"isEpgPdfExport": false,
|
|
123
|
+
"url": "Download-Url-1",
|
|
124
|
+
"trackingData": {
|
|
125
|
+
"secondLevelId": "2",
|
|
126
|
+
"pageName": "Page-Name"
|
|
127
|
+
},
|
|
128
|
+
"downloadBoxMetadata": {
|
|
129
|
+
"title": "Download-File-1",
|
|
130
|
+
"displaySuffix": "MP3",
|
|
131
|
+
"displaySize": "3mb"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"isEpgPdfExport": false,
|
|
136
|
+
"url": "Download-Url-2",
|
|
137
|
+
"trackingData": {
|
|
138
|
+
"secondLevelId": "2",
|
|
139
|
+
"pageName": "Page-Name"
|
|
140
|
+
},
|
|
141
|
+
"downloadBoxMetadata": {
|
|
142
|
+
"title": "Download-File-2",
|
|
143
|
+
"displaySuffix": "MP3",
|
|
144
|
+
"displaySize": "3mb"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"isEpgPdfExport": false,
|
|
149
|
+
"url": "Download-Url-3",
|
|
150
|
+
"trackingData": {
|
|
151
|
+
"secondLevelId": "2",
|
|
152
|
+
"pageName": "Page-Name"
|
|
153
|
+
},
|
|
154
|
+
"downloadBoxMetadata": {
|
|
155
|
+
"title": "Download-File-3",
|
|
156
|
+
"displaySuffix": "PDF",
|
|
157
|
+
"displaySize": "48kb"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"isHeadline": true,
|
|
168
|
+
"text": "Copytext mit FAQs"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"isFAQ": true,
|
|
175
|
+
"text": "Wo brauche ich noch Corona-Test?",
|
|
176
|
+
"paragraphProperties": [
|
|
177
|
+
{
|
|
178
|
+
"faqAnswer": {
|
|
179
|
+
"split": [
|
|
180
|
+
{
|
|
181
|
+
"isText": true,
|
|
182
|
+
"text": "Es besteht keine Testpflicht mehr. Auch in Krankenhäusern, Alten- und Pflegeheimen sowie Sammelunterkünften muss sich seit dem 1. März niemand mehr testen lassen."
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"isUl": true,
|
|
186
|
+
"text": "<li>Es besteht keine Testpflicht mehr</li><li>Auch in Krankenhäusern, Alten- und Pflegeheimen</li>"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"isOl": true,
|
|
190
|
+
"text": "<li>Es besteht keine Testpflicht mehr</li><li>Auch in Krankenhäusern, Alten- und Pflegeheimen</li>"
|
|
191
|
+
}
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"isFAQ": true,
|
|
199
|
+
"text": "Gibt es noch Bürgertests?",
|
|
200
|
+
"paragraphProperties": [
|
|
201
|
+
{
|
|
202
|
+
"faqAnswer": {
|
|
203
|
+
"split": [
|
|
204
|
+
{
|
|
205
|
+
"isText": true,
|
|
206
|
+
"text": "Seit dem 1. März 2023 besteht keine Möglichkeit mehr zur kostenlosen Bürgertestung. Alle Testangebote sind kostenpflichtig."
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"isFAQ": true,
|
|
215
|
+
"text": "Wo muss ich Maske tragen?",
|
|
216
|
+
"paragraphProperties": [
|
|
217
|
+
{
|
|
218
|
+
"faqAnswer": {
|
|
219
|
+
"split": [
|
|
220
|
+
{
|
|
221
|
+
"isText": true,
|
|
222
|
+
"text": "Ab dem 8. April 2023 ist die Maskenpflicht in Hessen in allen Bereichen aufgehoben."
|
|
223
|
+
}
|
|
224
|
+
]
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"isHeadline": true,
|
|
231
|
+
"text": "Copytext mit File-Download"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"paragraphBoxItem": {
|
|
238
|
+
"isFileDownload": true,
|
|
239
|
+
"label": {
|
|
240
|
+
"type": "download",
|
|
241
|
+
"loca": "label_download",
|
|
242
|
+
"byline": {
|
|
243
|
+
"bylineText": "PDF - 4mb"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"link": {
|
|
247
|
+
"url": "/download1",
|
|
248
|
+
"isTargetBlank": false,
|
|
249
|
+
"trackingData": {
|
|
250
|
+
"secondLevelId": "2",
|
|
251
|
+
"pageName": "download1"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"toModel": {
|
|
255
|
+
"mediaBacklinkToStoryTeaser": {
|
|
256
|
+
"title": "File-Download mit Bild, intern",
|
|
257
|
+
"link": {
|
|
258
|
+
"url": "/download1",
|
|
259
|
+
"isTargetBlank": false
|
|
260
|
+
},
|
|
261
|
+
"hasIcon": true,
|
|
262
|
+
"iconName": "download-neu",
|
|
263
|
+
"isForeignBrand": false,
|
|
264
|
+
"readMoreScreenreader": "zum hr3.de Download",
|
|
265
|
+
"readMore": "zum hr3.de Download",
|
|
266
|
+
"readMoreLong": "zum hr3.de Download",
|
|
267
|
+
"trackingData": {
|
|
268
|
+
"secondLevelId": "2",
|
|
269
|
+
"pageName": "download1"
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
"teaseritem": {
|
|
274
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
275
|
+
"@->contentpath": "copytext_image_50",
|
|
276
|
+
"@->replaceToken": [
|
|
277
|
+
{
|
|
278
|
+
"@->token": "image",
|
|
279
|
+
"@->value": "buchmesse-fahnen-102"
|
|
280
|
+
}
|
|
281
|
+
]
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"isHeadline": true,
|
|
290
|
+
"text": "Filedownload unter Bild in voller Breite"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"paragraphBoxItem": {
|
|
294
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
295
|
+
"@->contentpath": "copytext_image_100",
|
|
296
|
+
"@->replaceToken": [
|
|
297
|
+
{
|
|
298
|
+
"@->token": "image",
|
|
299
|
+
"@->value": "buchmesse-fahnen-102"
|
|
300
|
+
}
|
|
301
|
+
]
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"paragraphBoxItem": {
|
|
306
|
+
"isFileDownload": true,
|
|
307
|
+
"label": {
|
|
308
|
+
"type": "download",
|
|
309
|
+
"loca": "label_download",
|
|
310
|
+
"byline": {
|
|
311
|
+
"bylineText": "PDF - 4mb"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"link": {
|
|
315
|
+
"url": "/download1",
|
|
316
|
+
"isTargetBlank": false,
|
|
317
|
+
"trackingData": {
|
|
318
|
+
"secondLevelId": "2",
|
|
319
|
+
"pageName": "download1"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"toModel": {
|
|
323
|
+
"mediaBacklinkToStoryTeaser": {
|
|
324
|
+
"title": "File-Download mit Bild, intern",
|
|
325
|
+
"link": {
|
|
326
|
+
"url": "/download1",
|
|
327
|
+
"isTargetBlank": false
|
|
328
|
+
},
|
|
329
|
+
"hasIcon": true,
|
|
330
|
+
"iconName": "download-neu",
|
|
331
|
+
"isForeignBrand": false,
|
|
332
|
+
"readMoreScreenreader": "zum hr3.de Download",
|
|
333
|
+
"readMore": "zum hr3.de Download",
|
|
334
|
+
"readMoreLong": "zum hr3.de Download",
|
|
335
|
+
"trackingData": {
|
|
336
|
+
"secondLevelId": "2",
|
|
337
|
+
"pageName": "download1"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
"teaseritem": {
|
|
342
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
343
|
+
"@->contentpath": "copytext_image_50",
|
|
344
|
+
"@->replaceToken": [
|
|
345
|
+
{
|
|
346
|
+
"@->token": "image",
|
|
347
|
+
"@->value": "buchmesse-fahnen-102"
|
|
348
|
+
}
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"paragraphBoxItem": {
|
|
361
|
+
"isFileDownload": true,
|
|
362
|
+
"label": {
|
|
363
|
+
"type": "download",
|
|
364
|
+
"loca": "label_download",
|
|
365
|
+
"byline": {
|
|
366
|
+
"bylineText": "PDF - 4mb"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"link": {
|
|
370
|
+
"url": "/download2",
|
|
371
|
+
"isTargetBlank": false,
|
|
372
|
+
"trackingData": {
|
|
373
|
+
"secondLevelId": "2",
|
|
374
|
+
"pageName": "download2"
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"toModel": {
|
|
378
|
+
"mediaBacklinkToStoryTeaser": {
|
|
379
|
+
"title": "File-Download mit Bild, extern",
|
|
380
|
+
"link": {
|
|
381
|
+
"url": "/download2",
|
|
382
|
+
"isTargetBlank": false
|
|
383
|
+
},
|
|
384
|
+
"hasIcon": true,
|
|
385
|
+
"iconName": "download-neu",
|
|
386
|
+
"isForeignBrand": true,
|
|
387
|
+
"readMoreScreenreader": "zum hr3.de Download",
|
|
388
|
+
"readMore": "zum hr3.de Download",
|
|
389
|
+
"readMoreLong": "zum hr3.de Download",
|
|
390
|
+
"trackingData": {
|
|
391
|
+
"secondLevelId": "2",
|
|
392
|
+
"pageName": "download2"
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"teaseritem": {
|
|
397
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
398
|
+
"@->contentpath": "copytext_image_50",
|
|
399
|
+
"@->replaceToken": [
|
|
400
|
+
{
|
|
401
|
+
"@->token": "image",
|
|
402
|
+
"@->value": "buchmesse-fahnen-102"
|
|
403
|
+
}
|
|
404
|
+
]
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"paragraphBoxItem": {
|
|
413
|
+
"isFileDownload": true,
|
|
414
|
+
"label": {
|
|
415
|
+
"type": "download",
|
|
416
|
+
"loca": "label_download",
|
|
417
|
+
"byline": {
|
|
418
|
+
"bylineText": "PDF - 4mb"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"toModel": {
|
|
422
|
+
"mediaBacklinkToStoryTeaser": {
|
|
423
|
+
"title": "File-Download ohne Bild, extern",
|
|
424
|
+
"link": {
|
|
425
|
+
"url": "/download3",
|
|
426
|
+
"isTargetBlank": false
|
|
427
|
+
},
|
|
428
|
+
"hasIcon": true,
|
|
429
|
+
"iconName": "download-neu",
|
|
430
|
+
"isForeignBrand": true,
|
|
431
|
+
"readMoreScreenreader": "zum hr3.de Download",
|
|
432
|
+
"readMore": "zum hr3.de Download",
|
|
433
|
+
"readMoreLong": "zum hr3.de Download",
|
|
434
|
+
"trackingData": {
|
|
435
|
+
"secondLevelId": "2",
|
|
436
|
+
"pageName": "download3"
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"isHeadline": true,
|
|
447
|
+
"text": "Copytext mit Image"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"paragraphBoxItem": {
|
|
454
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
455
|
+
"@->contentpath": "copytext_image_100",
|
|
456
|
+
"@->replaceToken": [
|
|
457
|
+
{
|
|
458
|
+
"@->token": "image",
|
|
459
|
+
"@->value": "buchmesse-fahnen-102"
|
|
460
|
+
}
|
|
461
|
+
]
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"isHeadline": true,
|
|
466
|
+
"text": "Bild in halber Breite unter Video in voller Breite"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"paragraphBoxItem": {
|
|
470
|
+
"isVideo": true,
|
|
471
|
+
"isVideoOnDemand": true,
|
|
472
|
+
"showFullSize": {
|
|
473
|
+
"isTrue": true
|
|
474
|
+
},
|
|
475
|
+
"label": {
|
|
476
|
+
"type": "video",
|
|
477
|
+
"loca": "label_video",
|
|
478
|
+
"byline": {
|
|
479
|
+
"bylineText": "03:20 Min."
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"copyright": "hessenschau",
|
|
483
|
+
"showAirdate": true,
|
|
484
|
+
"airdateDate": {
|
|
485
|
+
"htmlDateTime": "2022-10-31T19:30+0200",
|
|
486
|
+
"htmlDate": "31.10.2022",
|
|
487
|
+
"date": "31.10.22",
|
|
488
|
+
"dateSeparatorTime": "31.10.22, 19:30"
|
|
489
|
+
},
|
|
490
|
+
"toModel": {
|
|
491
|
+
"videoElement": {
|
|
492
|
+
"ardPlayerConfig": {
|
|
493
|
+
"@->jsoninclude": "video/videos.inc.json",
|
|
494
|
+
"@->contentpath": "video-1"
|
|
495
|
+
},
|
|
496
|
+
"ardPlayerJsonConfig": {
|
|
497
|
+
"@->jsoninclude": "video/videos.inc.json",
|
|
498
|
+
"@->contentpath": "video-1"
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"mediaBacklinkToStoryTeaser": {
|
|
502
|
+
"link": {
|
|
503
|
+
"url": "/videoseite",
|
|
504
|
+
"isTargetBlank": false
|
|
505
|
+
},
|
|
506
|
+
"readMoreScreenreader": "zum hr3.de Video",
|
|
507
|
+
"title": "Musik macht deinen Tag",
|
|
508
|
+
"isForeignBrand": true,
|
|
509
|
+
"readMore": "zur hr3.de Video-Einzelseite",
|
|
510
|
+
"hasIcon": true,
|
|
511
|
+
"iconName": "extern"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"teaseritem": {
|
|
515
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
516
|
+
"@->contentpath": "copytext_image_100",
|
|
517
|
+
"@->replaceToken": [
|
|
518
|
+
{
|
|
519
|
+
"@->token": "image",
|
|
520
|
+
"@->value": "lehrerin-ukraine-104"
|
|
521
|
+
}
|
|
522
|
+
]
|
|
523
|
+
},
|
|
524
|
+
|
|
525
|
+
"teaserImage": {
|
|
526
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
527
|
+
"@->contentpath": "copytext_image_100",
|
|
528
|
+
"@->replaceToken": [
|
|
529
|
+
{
|
|
530
|
+
"@->token": "image",
|
|
531
|
+
"@->value": "lehrerin-ukraine-104"
|
|
532
|
+
}
|
|
533
|
+
]
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"paragraphBoxItem": {
|
|
539
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
540
|
+
"@->contentpath": "copytext_image_50",
|
|
541
|
+
"@->replaceToken": [
|
|
542
|
+
{
|
|
543
|
+
"@->token": "image",
|
|
544
|
+
"@->value": "buchmesse-fahnen-102"
|
|
545
|
+
}
|
|
546
|
+
]
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"isHeadline": true,
|
|
554
|
+
"text": "Copytext mit Infobox"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"isInfoBox": true,
|
|
561
|
+
"text": {
|
|
562
|
+
"split": [
|
|
563
|
+
{
|
|
564
|
+
"isText": true,
|
|
565
|
+
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod <strong>tempor invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum."
|
|
566
|
+
}
|
|
567
|
+
]
|
|
568
|
+
},
|
|
569
|
+
"paragraphProperties": [
|
|
570
|
+
{
|
|
571
|
+
"title": "Volle Breite, mit Bild über halbe Breite",
|
|
572
|
+
"showFullSize": true
|
|
573
|
+
}
|
|
574
|
+
],
|
|
575
|
+
"paragraphBoxItem": {
|
|
576
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
577
|
+
"@->contentpath": "copytext_image_50",
|
|
578
|
+
"@->replaceToken": [
|
|
579
|
+
{
|
|
580
|
+
"@->token": "image",
|
|
581
|
+
"@->value": "buchmesse-fahnen-102"
|
|
582
|
+
}
|
|
583
|
+
]
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"isInfoBox": true,
|
|
591
|
+
"text": {
|
|
592
|
+
"split": [
|
|
593
|
+
{
|
|
594
|
+
"isText": true,
|
|
595
|
+
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod <strong>tempor invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum."
|
|
596
|
+
}
|
|
597
|
+
]
|
|
598
|
+
},
|
|
599
|
+
"paragraphProperties": [
|
|
600
|
+
{
|
|
601
|
+
"title": "Volle Breite, mit Bild über volle Breite",
|
|
602
|
+
"showFullSize": true
|
|
603
|
+
}
|
|
604
|
+
],
|
|
605
|
+
"paragraphBoxItem": {
|
|
606
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
607
|
+
"@->contentpath": "copytext_image_100",
|
|
608
|
+
"@->replaceToken": [
|
|
609
|
+
{
|
|
610
|
+
"@->token": "image",
|
|
611
|
+
"@->value": "buchmesse-fahnen-102"
|
|
612
|
+
}
|
|
613
|
+
]
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"isHeadline": true,
|
|
621
|
+
"text": "Infobox in halber Breite unter Bild in voller Breite"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"paragraphBoxItem": {
|
|
625
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
626
|
+
"@->contentpath": "copytext_image_100",
|
|
627
|
+
"@->replaceToken": [
|
|
628
|
+
{
|
|
629
|
+
"@->token": "image",
|
|
630
|
+
"@->value": "buchmesse-fahnen-102"
|
|
631
|
+
}
|
|
632
|
+
]
|
|
633
|
+
}
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"isInfoBox": true,
|
|
637
|
+
"text": {
|
|
638
|
+
"split": [
|
|
639
|
+
{
|
|
640
|
+
"isText": true,
|
|
641
|
+
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod <strong>tempor invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum."
|
|
642
|
+
}
|
|
643
|
+
]
|
|
644
|
+
},
|
|
645
|
+
"paragraphProperties": [
|
|
646
|
+
{
|
|
647
|
+
"title": "Halbe Breite, mit Bild über halbe oder volle Breite",
|
|
648
|
+
"showFullSize": false
|
|
649
|
+
}
|
|
650
|
+
],
|
|
651
|
+
"paragraphBoxItem": {
|
|
652
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
653
|
+
"@->contentpath": "copytext_image_50",
|
|
654
|
+
"@->replaceToken": [
|
|
655
|
+
{
|
|
656
|
+
"@->token": "image",
|
|
657
|
+
"@->value": "buchmesse-fahnen-102"
|
|
658
|
+
}
|
|
659
|
+
]
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"isInfoBox": true,
|
|
670
|
+
"text": {
|
|
671
|
+
"split": [
|
|
672
|
+
{
|
|
673
|
+
"isText": true,
|
|
674
|
+
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod <strong>tempor invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum."
|
|
675
|
+
}
|
|
676
|
+
]
|
|
677
|
+
},
|
|
678
|
+
"paragraphProperties": [
|
|
679
|
+
{
|
|
680
|
+
"title": "Volle Breite, ohne Bild",
|
|
681
|
+
"showFullSize": true
|
|
682
|
+
}
|
|
683
|
+
]
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"isInfoBox": true,
|
|
690
|
+
"text": {
|
|
691
|
+
"split": [
|
|
692
|
+
{
|
|
693
|
+
"isText": true,
|
|
694
|
+
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod <strong>tempor invidunt</strong> ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum."
|
|
695
|
+
}
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
"paragraphProperties": [
|
|
699
|
+
{
|
|
700
|
+
"title": "Halbe Breite, ohne Bild",
|
|
701
|
+
"showFullSize": false
|
|
702
|
+
}
|
|
703
|
+
]
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"isHeadline": true,
|
|
710
|
+
"text": "Copytext mit Jobposting"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"isParagraph": true,
|
|
714
|
+
"text": {
|
|
715
|
+
"split": [
|
|
716
|
+
{
|
|
717
|
+
"isText": true,
|
|
718
|
+
"text": "Digitale Produkte, Fernsehen, Radio– wir sind Hessens größtes Medienunternehmen. Als Mitglied der ARD sind wir stolz darauf, mit unseren vielfältigen und qualitativ hochwertigen Programmangeboten wesentlich zur Meinungs- und Medienvielfalt in Deutschland beizutragen. Zur Verstärkung unseres Teams suchen wir befristet für zunächst 3 Jahre eine*n innovative*n"
|
|
719
|
+
}
|
|
720
|
+
]
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"isHeadline": true,
|
|
725
|
+
"text": "Java-Entwickler*in"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"isJobposting": true,
|
|
729
|
+
"text": "Wo brauche ich noch Corona-Test?",
|
|
730
|
+
"paragraphProperties": [
|
|
731
|
+
{
|
|
732
|
+
"jobDescription": {
|
|
733
|
+
"split": [
|
|
734
|
+
{
|
|
735
|
+
"isText": true,
|
|
736
|
+
"text": "Du hast Spaß an neuen Technologien und bist ein*e Experte*in in der Java-Entwicklung? Du suchst spannende und vielfältige Projekte in einem dynamischen Medienumfeld? Dann vernetze gemeinsam mit uns die Mediensysteme der ARD."
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"isUl": true,
|
|
740
|
+
"text": "<li>Du hast Spaß daran selbstorganisiert in einem agilen Umfeld und interdisziplinären Projektteams zu arbeiten.</li><li>Du bringst ein abgeschlossenes informatikorientiertes Studium bzw. eine vergleichbare Qualifikation mit und verfügst über Berufserfahrung im Bereich Softwareentwicklung.</li><li>Sehr gute Java-Kenntnisse, Kenntnisse in modernen Schnittstellentechnologien und Datenbanksystemen setzen wir voraus.</li>"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"isOl": true,
|
|
744
|
+
"text": "<li>Du implementierst als Full-Stack-Entwickler*in Features vertikal durch alle Softwareschichten.</li><li>Im Team entwickelst du die Applikation in enger Zusammenarbeit mit Anwender*innen fachlich weiter.</li>"
|
|
745
|
+
}
|
|
746
|
+
]
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
]
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"isHeadline": true,
|
|
753
|
+
"text": "Copytext mit Posterteaser"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"isParagraph": true,
|
|
760
|
+
"paragraphTeaserItem": {
|
|
761
|
+
"isStory": true,
|
|
762
|
+
"toModel": {
|
|
763
|
+
"baseTeaserDS": {
|
|
764
|
+
"@->jsoninclude": "teaser/teasers.inc.json",
|
|
765
|
+
"@->contentpath": "teaser.logicItem.includeModel",
|
|
766
|
+
"@->extends": {
|
|
767
|
+
"showFullSize": {
|
|
768
|
+
"isTrue": true
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"@->overrides": [
|
|
772
|
+
{
|
|
773
|
+
"@->contentpath": "title",
|
|
774
|
+
"@->value": "Abgeschobene Geschwister aus Syrien zurück in Wolfhagen Abgeschobene Geschwister aus Syrien zurück in Wolfhagen"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"@->contentpath": "teaserType",
|
|
778
|
+
"@->value": "poster"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"@->contentpath": "teaserSize",
|
|
782
|
+
"@->value": "50"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"@->contentpath": "realTeaserSize",
|
|
786
|
+
"@->value": "50"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"@->contentpath": "link.readMoreText.readMoreLong",
|
|
790
|
+
"@->value": "Zum Artikel"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"@->contentpath": "teaserImage",
|
|
794
|
+
"@->value": {
|
|
795
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
796
|
+
"@->contentpath": "teaser_poster_50",
|
|
797
|
+
"@->replaceToken": [
|
|
798
|
+
{
|
|
799
|
+
"@->token": "image",
|
|
800
|
+
"@->value": "rueckkehr-nach-abschiebung-102"
|
|
801
|
+
}
|
|
802
|
+
]
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
]
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"isHeadline": true,
|
|
812
|
+
"text": "Posterteaser in halber Breite unter Bild"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"paragraphBoxItem": {
|
|
816
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
817
|
+
"@->contentpath": "copytext_image_100",
|
|
818
|
+
"@->replaceToken": [
|
|
819
|
+
{
|
|
820
|
+
"@->token": "image",
|
|
821
|
+
"@->value": "buchmesse-fahnen-102"
|
|
822
|
+
}
|
|
823
|
+
]
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"isParagraph": true,
|
|
828
|
+
"paragraphTeaserItem": {
|
|
829
|
+
"isStory": true,
|
|
830
|
+
"toModel": {
|
|
831
|
+
"baseTeaserDS": {
|
|
832
|
+
"@->jsoninclude": "teaser/teasers.inc.json",
|
|
833
|
+
"@->contentpath": "teaser.logicItem.includeModel",
|
|
834
|
+
"@->extends": {
|
|
835
|
+
"showFullSize": {
|
|
836
|
+
"isTrue": false
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
"@->overrides": [
|
|
840
|
+
{
|
|
841
|
+
"@->contentpath": "title",
|
|
842
|
+
"@->value": "Abgeschobene Geschwister aus Syrien zurück in Wolfhagen Abgeschobene Geschwister aus Syrien zurück in Wolfhagen"
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"@->contentpath": "teaserType",
|
|
846
|
+
"@->value": "poster"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"@->contentpath": "teaserSize",
|
|
850
|
+
"@->value": "50"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"@->contentpath": "realTeaserSize",
|
|
854
|
+
"@->value": "50"
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"@->contentpath": "link.readMoreText.readMoreLong",
|
|
858
|
+
"@->value": "Zum Artikel"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"@->contentpath": "teaserImage",
|
|
862
|
+
"@->value": {
|
|
863
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
864
|
+
"@->contentpath": "teaser_poster_50",
|
|
865
|
+
"@->replaceToken": [
|
|
866
|
+
{
|
|
867
|
+
"@->token": "image",
|
|
868
|
+
"@->value": "rueckkehr-nach-abschiebung-102"
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
]
|
|
874
|
+
}
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"isHeadline": true,
|
|
883
|
+
"text": "Poster-Teaser 16:9"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"isParagraph": true,
|
|
890
|
+
"paragraphTeaserItem": {
|
|
891
|
+
"isStory": true,
|
|
892
|
+
"toModel": {
|
|
893
|
+
"baseTeaserDS": {
|
|
894
|
+
"@->jsoninclude": "teaser/teasers.inc.json",
|
|
895
|
+
"@->contentpath": "teaser.logicItem.includeModel",
|
|
896
|
+
"@->extends": {
|
|
897
|
+
"showFullSize": {
|
|
898
|
+
"isTrue": true
|
|
899
|
+
},
|
|
900
|
+
"showStretched": {
|
|
901
|
+
"isTrue": "true"
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
"@->overrides": [
|
|
905
|
+
{
|
|
906
|
+
"@->contentpath": "title",
|
|
907
|
+
"@->value": "Abgeschobene Geschwister aus Syrien zurück in Wolfhagen Abgeschobene Geschwister aus Syrien zurück in Wolfhagen"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"@->contentpath": "teaserType",
|
|
911
|
+
"@->value": "poster"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"@->contentpath": "teaserSize",
|
|
915
|
+
"@->value": "50"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"@->contentpath": "realTeaserSize",
|
|
919
|
+
"@->value": "50"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"@->contentpath": "link.readMoreText.readMoreLong",
|
|
923
|
+
"@->value": "Zum Artikel"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"@->contentpath": "teaserImage",
|
|
927
|
+
"@->value": {
|
|
928
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
929
|
+
"@->contentpath": "teaser_poster_16_to_9",
|
|
930
|
+
"@->replaceToken": [
|
|
931
|
+
{
|
|
932
|
+
"@->token": "image",
|
|
933
|
+
"@->value": "rueckkehr-nach-abschiebung-102"
|
|
934
|
+
}
|
|
935
|
+
]
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
]
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"isHeadline": true,
|
|
948
|
+
"text": "Copytext mit Zitat"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"isCite": true,
|
|
955
|
+
"text": "Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
|
|
956
|
+
"paragraphProperties": [
|
|
957
|
+
{
|
|
958
|
+
"showFullSize": true,
|
|
959
|
+
"citeAuthor": "Marlene Dietrich"
|
|
960
|
+
}
|
|
961
|
+
]
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"isHeadline": true,
|
|
968
|
+
"text": "Zitat in voller Breite unter Bild in voller Breite"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"paragraphBoxItem": {
|
|
972
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
973
|
+
"@->contentpath": "copytext_image_100",
|
|
974
|
+
"@->replaceToken": [
|
|
975
|
+
{
|
|
976
|
+
"@->token": "image",
|
|
977
|
+
"@->value": "buchmesse-fahnen-102"
|
|
978
|
+
}
|
|
979
|
+
]
|
|
980
|
+
}
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"isCite": true,
|
|
984
|
+
"text": "Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
|
|
985
|
+
"paragraphProperties": [
|
|
986
|
+
{
|
|
987
|
+
"showFullSize": true,
|
|
988
|
+
"citeAuthor": "Marlene Dietrich"
|
|
989
|
+
}
|
|
990
|
+
]
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"isHeadline": true,
|
|
997
|
+
"text": "Zitat in halber Breite unter Bild in voller Breite"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"paragraphBoxItem": {
|
|
1001
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
1002
|
+
"@->contentpath": "copytext_image_100",
|
|
1003
|
+
"@->replaceToken": [
|
|
1004
|
+
{
|
|
1005
|
+
"@->token": "image",
|
|
1006
|
+
"@->value": "buchmesse-fahnen-102"
|
|
1007
|
+
}
|
|
1008
|
+
]
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"isCite": true,
|
|
1013
|
+
"text": "Wenn ich mein Leben noch einmal leben könnte, würde ich die gleichen Fehler machen. Aber ein bisschen früher damit ich mehr davon habe.",
|
|
1014
|
+
"paragraphProperties": [
|
|
1015
|
+
{
|
|
1016
|
+
"showFullSize": false,
|
|
1017
|
+
"citeAuthor": "Marlene Dietrich"
|
|
1018
|
+
}
|
|
1019
|
+
]
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"isHeadline": true,
|
|
1026
|
+
"text": "Copytext mit Zusatzinfo"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"isAdditionalInfo": true,
|
|
1036
|
+
"text": {
|
|
1037
|
+
"split": [
|
|
1038
|
+
{
|
|
1039
|
+
"isText": true,
|
|
1040
|
+
"text": "Sendung: hr-fernsehen, hessenschau, 13.12.2022, 19.30 Uhr"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"isOl": true,
|
|
1044
|
+
"text": "<li>eins</li><li>zwei</li><li>drei</li>"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"isUl": true,
|
|
1048
|
+
"text": "<li>eins</li><li>zwei</li><li>drei</li>"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"isText": true,
|
|
1052
|
+
"text": "Quelle: hessenschau.de/Jörn Perske"
|
|
1053
|
+
}
|
|
1054
|
+
]
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
]
|
|
1058
|
+
}
|