hr-design-system-handlebars 1.82.10 → 1.83.0
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 +24 -0
- package/dist/assets/index.css +68 -47
- package/dist/assets/js/components/dataPolicySettings/dataPolicySettingsDs.feature.js +29 -35
- 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 -35
- 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 +1 -0
|
@@ -9,22 +9,22 @@
|
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
"isDownloadBox": true,
|
|
12
|
-
"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.",
|
|
12
|
+
"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.",
|
|
13
13
|
"paragraphProperties": [
|
|
14
14
|
{
|
|
15
|
-
"title":"Download-Box volle Breite",
|
|
16
|
-
"showFullSize":true
|
|
15
|
+
"title": "Download-Box volle Breite",
|
|
16
|
+
"showFullSize": true
|
|
17
17
|
}
|
|
18
18
|
],
|
|
19
19
|
"paragraphbox": {
|
|
20
20
|
"downloadBoxItems": [
|
|
21
21
|
{
|
|
22
22
|
"isEpgPdfExport": false,
|
|
23
|
-
"url": "Download-Url-1",
|
|
23
|
+
"url": "Download-Url-1",
|
|
24
24
|
"trackingData": {
|
|
25
25
|
"secondLevelId": "2",
|
|
26
26
|
"pageName": "Page-Name"
|
|
27
|
-
},
|
|
27
|
+
},
|
|
28
28
|
"downloadBoxMetadata": {
|
|
29
29
|
"title": "Download-File-1, Lorem ipsum dolor sit amet, consetetur sadipscing elitr",
|
|
30
30
|
"displaySuffix": "JPG",
|
|
@@ -56,20 +56,92 @@
|
|
|
56
56
|
"displaySuffix": "PDF",
|
|
57
57
|
"displaySize": "48kb"
|
|
58
58
|
}
|
|
59
|
-
}
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"isDownloadBox": true,
|
|
68
|
+
"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.",
|
|
69
|
+
"paragraphProperties": [
|
|
70
|
+
{
|
|
71
|
+
"title": "Download-Box halbe Breite",
|
|
72
|
+
"showFullSize": false
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"paragraphbox": {
|
|
76
|
+
"downloadBoxItems": [
|
|
77
|
+
{
|
|
78
|
+
"isEpgPdfExport": false,
|
|
79
|
+
"url": "Download-Url-1",
|
|
80
|
+
"trackingData": {
|
|
81
|
+
"secondLevelId": "2",
|
|
82
|
+
"pageName": "Page-Name"
|
|
83
|
+
},
|
|
84
|
+
"downloadBoxMetadata": {
|
|
85
|
+
"title": "Download-File-1",
|
|
86
|
+
"displaySuffix": "MP3",
|
|
87
|
+
"displaySize": "3mb"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"isEpgPdfExport": false,
|
|
92
|
+
"url": "Download-Url-2",
|
|
93
|
+
"trackingData": {
|
|
94
|
+
"secondLevelId": "2",
|
|
95
|
+
"pageName": "Page-Name"
|
|
96
|
+
},
|
|
97
|
+
"downloadBoxMetadata": {
|
|
98
|
+
"title": "Download-File-2",
|
|
99
|
+
"displaySuffix": "MP3",
|
|
100
|
+
"displaySize": "3mb"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"isEpgPdfExport": false,
|
|
105
|
+
"url": "Download-Url-3",
|
|
106
|
+
"trackingData": {
|
|
107
|
+
"secondLevelId": "2",
|
|
108
|
+
"pageName": "Page-Name"
|
|
109
|
+
},
|
|
110
|
+
"downloadBoxMetadata": {
|
|
111
|
+
"title": "Download-File-3",
|
|
112
|
+
"displaySuffix": "PDF",
|
|
113
|
+
"displaySize": "48kb"
|
|
114
|
+
}
|
|
115
|
+
}
|
|
60
116
|
]
|
|
61
117
|
}
|
|
62
118
|
},
|
|
63
119
|
{
|
|
64
120
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
65
121
|
},
|
|
122
|
+
{
|
|
123
|
+
"isHeadline": true,
|
|
124
|
+
"text": "Downloadbox in halber Breite unter Bild in voller Breite"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"paragraphBoxItem": {
|
|
128
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
129
|
+
"@->contentpath": "copytext_image_100",
|
|
130
|
+
"@->replaceToken": [
|
|
131
|
+
{
|
|
132
|
+
"@->token": "image",
|
|
133
|
+
"@->value": "buchmesse-fahnen-102"
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
}
|
|
137
|
+
},
|
|
66
138
|
{
|
|
67
139
|
"isDownloadBox": true,
|
|
68
|
-
"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.",
|
|
140
|
+
"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.",
|
|
69
141
|
"paragraphProperties": [
|
|
70
142
|
{
|
|
71
|
-
"title":"Download-Box halbe Breite",
|
|
72
|
-
"showFullSize":false
|
|
143
|
+
"title": "Download-Box halbe Breite",
|
|
144
|
+
"showFullSize": false
|
|
73
145
|
}
|
|
74
146
|
],
|
|
75
147
|
"paragraphbox": {
|
|
@@ -112,7 +184,7 @@
|
|
|
112
184
|
"displaySuffix": "PDF",
|
|
113
185
|
"displaySize": "48kb"
|
|
114
186
|
}
|
|
115
|
-
}
|
|
187
|
+
}
|
|
116
188
|
]
|
|
117
189
|
}
|
|
118
190
|
},
|
|
@@ -120,4 +192,4 @@
|
|
|
120
192
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
121
193
|
}
|
|
122
194
|
]
|
|
123
|
-
}
|
|
195
|
+
}
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"trackingData": {
|
|
24
24
|
"secondLevelId": "2",
|
|
25
25
|
"pageName": "download1"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
28
|
"toModel": {
|
|
29
29
|
"mediaBacklinkToStoryTeaser": {
|
|
30
30
|
"title": "File-Download mit Bild, intern",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"trackingData": {
|
|
42
42
|
"secondLevelId": "2",
|
|
43
43
|
"pageName": "download1"
|
|
44
|
-
}
|
|
44
|
+
}
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"teaseritem": {
|
|
@@ -52,13 +52,84 @@
|
|
|
52
52
|
"@->token": "image",
|
|
53
53
|
"@->value": "buchmesse-fahnen-102"
|
|
54
54
|
}
|
|
55
|
-
]
|
|
56
|
-
}
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
61
|
-
},
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"isHeadline": true,
|
|
64
|
+
"text": "Filedownload unter Bild in voller Breite"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"paragraphBoxItem": {
|
|
68
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
69
|
+
"@->contentpath": "copytext_image_100",
|
|
70
|
+
"@->replaceToken": [
|
|
71
|
+
{
|
|
72
|
+
"@->token": "image",
|
|
73
|
+
"@->value": "buchmesse-fahnen-102"
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"paragraphBoxItem": {
|
|
80
|
+
"isFileDownload": true,
|
|
81
|
+
"label": {
|
|
82
|
+
"type": "download",
|
|
83
|
+
"loca": "label_download",
|
|
84
|
+
"byline": {
|
|
85
|
+
"bylineText": "PDF - 4mb"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"link": {
|
|
89
|
+
"url": "/download1",
|
|
90
|
+
"isTargetBlank": false,
|
|
91
|
+
"trackingData": {
|
|
92
|
+
"secondLevelId": "2",
|
|
93
|
+
"pageName": "download1"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"toModel": {
|
|
97
|
+
"mediaBacklinkToStoryTeaser": {
|
|
98
|
+
"title": "File-Download mit Bild, intern",
|
|
99
|
+
"link": {
|
|
100
|
+
"url": "/download1",
|
|
101
|
+
"isTargetBlank": false
|
|
102
|
+
},
|
|
103
|
+
"hasIcon": true,
|
|
104
|
+
"iconName": "download-neu",
|
|
105
|
+
"isForeignBrand": false,
|
|
106
|
+
"readMoreScreenreader": "zum hr3.de Download",
|
|
107
|
+
"readMore": "zum hr3.de Download",
|
|
108
|
+
"readMoreLong": "zum hr3.de Download",
|
|
109
|
+
"trackingData": {
|
|
110
|
+
"secondLevelId": "2",
|
|
111
|
+
"pageName": "download1"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"teaseritem": {
|
|
116
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
117
|
+
"@->contentpath": "copytext_image_50",
|
|
118
|
+
"@->replaceToken": [
|
|
119
|
+
{
|
|
120
|
+
"@->token": "image",
|
|
121
|
+
"@->value": "buchmesse-fahnen-102"
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
132
|
+
},
|
|
62
133
|
{
|
|
63
134
|
"paragraphBoxItem": {
|
|
64
135
|
"isFileDownload": true,
|
|
@@ -75,8 +146,8 @@
|
|
|
75
146
|
"trackingData": {
|
|
76
147
|
"secondLevelId": "2",
|
|
77
148
|
"pageName": "download2"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
149
|
+
}
|
|
150
|
+
},
|
|
80
151
|
"toModel": {
|
|
81
152
|
"mediaBacklinkToStoryTeaser": {
|
|
82
153
|
"title": "File-Download mit Bild, extern",
|
|
@@ -89,11 +160,11 @@
|
|
|
89
160
|
"isForeignBrand": true,
|
|
90
161
|
"readMoreScreenreader": "zum hr3.de Download",
|
|
91
162
|
"readMore": "zum hr3.de Download",
|
|
92
|
-
"readMoreLong": "zum hr3.de Download",
|
|
163
|
+
"readMoreLong": "zum hr3.de Download",
|
|
93
164
|
"trackingData": {
|
|
94
165
|
"secondLevelId": "2",
|
|
95
166
|
"pageName": "download2"
|
|
96
|
-
}
|
|
167
|
+
}
|
|
97
168
|
}
|
|
98
169
|
},
|
|
99
170
|
"teaseritem": {
|
|
@@ -104,8 +175,8 @@
|
|
|
104
175
|
"@->token": "image",
|
|
105
176
|
"@->value": "buchmesse-fahnen-102"
|
|
106
177
|
}
|
|
107
|
-
]
|
|
108
|
-
}
|
|
178
|
+
]
|
|
179
|
+
}
|
|
109
180
|
}
|
|
110
181
|
},
|
|
111
182
|
{
|
|
@@ -126,18 +197,18 @@
|
|
|
126
197
|
"title": "File-Download ohne Bild, extern",
|
|
127
198
|
"link": {
|
|
128
199
|
"url": "/download3",
|
|
129
|
-
"isTargetBlank": false
|
|
200
|
+
"isTargetBlank": false
|
|
130
201
|
},
|
|
131
202
|
"hasIcon": true,
|
|
132
203
|
"iconName": "download-neu",
|
|
133
204
|
"isForeignBrand": true,
|
|
134
205
|
"readMoreScreenreader": "zum hr3.de Download",
|
|
135
206
|
"readMore": "zum hr3.de Download",
|
|
136
|
-
"readMoreLong": "zum hr3.de Download",
|
|
207
|
+
"readMoreLong": "zum hr3.de Download",
|
|
137
208
|
"trackingData": {
|
|
138
209
|
"secondLevelId": "2",
|
|
139
210
|
"pageName": "download3"
|
|
140
|
-
}
|
|
211
|
+
}
|
|
141
212
|
}
|
|
142
213
|
}
|
|
143
214
|
}
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
]
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
|
+
{
|
|
23
|
+
"isHeadline": true,
|
|
24
|
+
"text": "Zwischenüberschrift"
|
|
25
|
+
},
|
|
22
26
|
{
|
|
23
27
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
24
28
|
},
|
|
@@ -34,6 +38,94 @@
|
|
|
34
38
|
]
|
|
35
39
|
}
|
|
36
40
|
},
|
|
41
|
+
{
|
|
42
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"isHeadline": true,
|
|
46
|
+
"text": "Bild in halber Breite unter Video in voller Breite"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"paragraphBoxItem": {
|
|
50
|
+
"isVideo": true,
|
|
51
|
+
"isVideoOnDemand": true,
|
|
52
|
+
"showFullSize": {
|
|
53
|
+
"isTrue": true
|
|
54
|
+
},
|
|
55
|
+
"label": {
|
|
56
|
+
"type": "video",
|
|
57
|
+
"loca": "label_video",
|
|
58
|
+
"byline": {
|
|
59
|
+
"bylineText": "03:20 Min."
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"copyright": "hessenschau",
|
|
63
|
+
"showAirdate": true,
|
|
64
|
+
"airdateDate": {
|
|
65
|
+
"htmlDateTime": "2022-10-31T19:30+0200",
|
|
66
|
+
"htmlDate": "31.10.2022",
|
|
67
|
+
"date": "31.10.22",
|
|
68
|
+
"dateSeparatorTime": "31.10.22, 19:30"
|
|
69
|
+
},
|
|
70
|
+
"toModel": {
|
|
71
|
+
"videoElement": {
|
|
72
|
+
"ardPlayerConfig": {
|
|
73
|
+
"@->jsoninclude": "video/videos.inc.json",
|
|
74
|
+
"@->contentpath": "video-1"
|
|
75
|
+
},
|
|
76
|
+
"ardPlayerJsonConfig": {
|
|
77
|
+
"@->jsoninclude": "video/videos.inc.json",
|
|
78
|
+
"@->contentpath": "video-1"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"mediaBacklinkToStoryTeaser": {
|
|
82
|
+
"link": {
|
|
83
|
+
"url": "/videoseite",
|
|
84
|
+
"isTargetBlank": false
|
|
85
|
+
},
|
|
86
|
+
"readMoreScreenreader": "zum hr3.de Video",
|
|
87
|
+
"title": "Musik macht deinen Tag",
|
|
88
|
+
"isForeignBrand": true,
|
|
89
|
+
"readMore": "zur hr3.de Video-Einzelseite",
|
|
90
|
+
"hasIcon": true,
|
|
91
|
+
"iconName": "extern"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"teaseritem": {
|
|
95
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
96
|
+
"@->contentpath": "copytext_image_100",
|
|
97
|
+
"@->replaceToken": [
|
|
98
|
+
{
|
|
99
|
+
"@->token": "image",
|
|
100
|
+
"@->value": "lehrerin-ukraine-104"
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
|
|
105
|
+
"teaserImage": {
|
|
106
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
107
|
+
"@->contentpath": "copytext_image_100",
|
|
108
|
+
"@->replaceToken": [
|
|
109
|
+
{
|
|
110
|
+
"@->token": "image",
|
|
111
|
+
"@->value": "lehrerin-ukraine-104"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"paragraphBoxItem": {
|
|
119
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
120
|
+
"@->contentpath": "copytext_image_50",
|
|
121
|
+
"@->replaceToken": [
|
|
122
|
+
{
|
|
123
|
+
"@->token": "image",
|
|
124
|
+
"@->value": "buchmesse-fahnen-102"
|
|
125
|
+
}
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
},
|
|
37
129
|
{
|
|
38
130
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
39
131
|
}
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"isText": true,
|
|
16
16
|
"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."
|
|
17
17
|
}
|
|
18
|
-
]
|
|
18
|
+
]
|
|
19
19
|
},
|
|
20
20
|
"paragraphProperties": [
|
|
21
21
|
{
|
|
22
|
-
"title":"Volle Breite, mit Bild über halbe Breite
|
|
23
|
-
"showFullSize":true
|
|
22
|
+
"title": "Volle Breite, mit Bild über halbe Breite",
|
|
23
|
+
"showFullSize": true
|
|
24
24
|
}
|
|
25
25
|
],
|
|
26
26
|
"paragraphBoxItem": {
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"isText": true,
|
|
46
46
|
"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."
|
|
47
47
|
}
|
|
48
|
-
]
|
|
48
|
+
]
|
|
49
49
|
},
|
|
50
50
|
"paragraphProperties": [
|
|
51
51
|
{
|
|
52
|
-
"title":"Volle Breite, mit Bild über volle Breite",
|
|
53
|
-
"showFullSize":true
|
|
52
|
+
"title": "Volle Breite, mit Bild über volle Breite",
|
|
53
|
+
"showFullSize": true
|
|
54
54
|
}
|
|
55
55
|
],
|
|
56
56
|
"paragraphBoxItem": {
|
|
@@ -75,12 +75,12 @@
|
|
|
75
75
|
"isText": true,
|
|
76
76
|
"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."
|
|
77
77
|
}
|
|
78
|
-
]
|
|
78
|
+
]
|
|
79
79
|
},
|
|
80
80
|
"paragraphProperties": [
|
|
81
81
|
{
|
|
82
|
-
"title":"Halbe Breite, mit Bild über halbe oder volle Breite",
|
|
83
|
-
"showFullSize":false
|
|
82
|
+
"title": "Halbe Breite, mit Bild über halbe oder volle Breite",
|
|
83
|
+
"showFullSize": false
|
|
84
84
|
}
|
|
85
85
|
],
|
|
86
86
|
"paragraphBoxItem": {
|
|
@@ -100,6 +100,22 @@
|
|
|
100
100
|
{
|
|
101
101
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
102
102
|
},
|
|
103
|
+
{
|
|
104
|
+
"isHeadline": true,
|
|
105
|
+
"text": "Infobox in halber Breite unter Bild in voller Breite"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"paragraphBoxItem": {
|
|
109
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
110
|
+
"@->contentpath": "copytext_image_100",
|
|
111
|
+
"@->replaceToken": [
|
|
112
|
+
{
|
|
113
|
+
"@->token": "image",
|
|
114
|
+
"@->value": "buchmesse-fahnen-102"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
},
|
|
103
119
|
{
|
|
104
120
|
"isInfoBox": true,
|
|
105
121
|
"text": {
|
|
@@ -108,12 +124,45 @@
|
|
|
108
124
|
"isText": true,
|
|
109
125
|
"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."
|
|
110
126
|
}
|
|
111
|
-
]
|
|
127
|
+
]
|
|
112
128
|
},
|
|
113
129
|
"paragraphProperties": [
|
|
114
130
|
{
|
|
115
|
-
"title":"
|
|
116
|
-
"showFullSize":
|
|
131
|
+
"title": "Halbe Breite, mit Bild über halbe oder volle Breite",
|
|
132
|
+
"showFullSize": false
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"paragraphBoxItem": {
|
|
136
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
137
|
+
"@->contentpath": "copytext_image_50",
|
|
138
|
+
"@->replaceToken": [
|
|
139
|
+
{
|
|
140
|
+
"@->token": "image",
|
|
141
|
+
"@->value": "buchmesse-fahnen-102"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"isInfoBox": true,
|
|
154
|
+
"text": {
|
|
155
|
+
"split": [
|
|
156
|
+
{
|
|
157
|
+
"isText": true,
|
|
158
|
+
"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."
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"paragraphProperties": [
|
|
163
|
+
{
|
|
164
|
+
"title": "Volle Breite, ohne Bild",
|
|
165
|
+
"showFullSize": true
|
|
117
166
|
}
|
|
118
167
|
]
|
|
119
168
|
},
|
|
@@ -128,17 +177,17 @@
|
|
|
128
177
|
"isText": true,
|
|
129
178
|
"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."
|
|
130
179
|
}
|
|
131
|
-
]
|
|
180
|
+
]
|
|
132
181
|
},
|
|
133
182
|
"paragraphProperties": [
|
|
134
183
|
{
|
|
135
|
-
"title":"Halbe Breite, ohne Bild",
|
|
136
|
-
"showFullSize":false
|
|
184
|
+
"title": "Halbe Breite, ohne Bild",
|
|
185
|
+
"showFullSize": false
|
|
137
186
|
}
|
|
138
187
|
]
|
|
139
188
|
},
|
|
140
189
|
{
|
|
141
190
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
142
191
|
}
|
|
143
|
-
]
|
|
192
|
+
]
|
|
144
193
|
}
|
|
@@ -68,6 +68,10 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
+
{
|
|
72
|
+
"isHeadline": true,
|
|
73
|
+
"text": "Zwischenüberschrift unter Livestream"
|
|
74
|
+
},
|
|
71
75
|
{
|
|
72
76
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
73
77
|
},
|
|
@@ -132,6 +136,86 @@
|
|
|
132
136
|
}
|
|
133
137
|
}
|
|
134
138
|
},
|
|
139
|
+
{
|
|
140
|
+
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"isHeadline": true,
|
|
144
|
+
"text": "Video-Livestream in halber Breite unter Bild in voller Breite"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"paragraphBoxItem": {
|
|
148
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
149
|
+
"@->contentpath": "copytext_image_100",
|
|
150
|
+
"@->replaceToken": [
|
|
151
|
+
{
|
|
152
|
+
"@->token": "image",
|
|
153
|
+
"@->value": "buchmesse-fahnen-102"
|
|
154
|
+
}
|
|
155
|
+
]
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"paragraphBoxItem": {
|
|
160
|
+
"isVideo": true,
|
|
161
|
+
"isLivestream": true,
|
|
162
|
+
"showFullSize": {
|
|
163
|
+
"isTrue": false
|
|
164
|
+
},
|
|
165
|
+
"isSsi": true,
|
|
166
|
+
"label": {
|
|
167
|
+
"@->jsoninclude": "teaser/teaser_labels.inc.json",
|
|
168
|
+
"@->contentpath": "video_livestream_copytext_50"
|
|
169
|
+
},
|
|
170
|
+
"toModel": {
|
|
171
|
+
"videoLivestreamElement": {
|
|
172
|
+
"ardPlayerConfig": {
|
|
173
|
+
"@->jsoninclude": "video/videos.inc.json",
|
|
174
|
+
"@->contentpath": "video-livestream-hr-fernsehen"
|
|
175
|
+
},
|
|
176
|
+
"ardPlayerJsonConfig": {
|
|
177
|
+
"@->jsoninclude": "video/videos.inc.json",
|
|
178
|
+
"@->contentpath": "video-livestream-hr-fernsehen"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"mediaBacklinkToStoryTeaser": {
|
|
182
|
+
"link": {
|
|
183
|
+
"url": "/livestreamseite",
|
|
184
|
+
"isTargetBlank": false
|
|
185
|
+
},
|
|
186
|
+
|
|
187
|
+
"readMoreScreenreader": "zum hr3.de Livestream",
|
|
188
|
+
"title": "Eröffnung der Frankfurter Buchmesse",
|
|
189
|
+
"isForeignBrand": false,
|
|
190
|
+
"readMore": "zum hr3.de Livestreamseite",
|
|
191
|
+
|
|
192
|
+
"hasIcon": true,
|
|
193
|
+
"iconName": "extern"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"teaseritem": {
|
|
197
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
198
|
+
"@->contentpath": "copytext_image_50",
|
|
199
|
+
"@->replaceToken": [
|
|
200
|
+
{
|
|
201
|
+
"@->token": "image",
|
|
202
|
+
"@->value": "buchmesse-fahnen-102"
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
|
|
207
|
+
"teaserImage": {
|
|
208
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
209
|
+
"@->contentpath": "copytext_image_50",
|
|
210
|
+
"@->replaceToken": [
|
|
211
|
+
{
|
|
212
|
+
"@->token": "image",
|
|
213
|
+
"@->value": "buchmesse-fahnen-102"
|
|
214
|
+
}
|
|
215
|
+
]
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
135
219
|
{
|
|
136
220
|
"@->jsoninclude": "content/copytext/copytext_paragraph.inc.json"
|
|
137
221
|
}
|