hr-design-system-handlebars 0.50.6 → 0.50.7
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 +12 -0
- package/dist/assets/index.css +29 -24
- package/dist/views/components/base/load_dynamic.hbs +6 -0
- package/dist/views/components/grid/grid.hbs +4 -4
- package/dist/views/components/grid/grid_group_highlight.hbs +9 -0
- package/dist/views/components/grid/grid_group_tabbed.hbs +3 -3
- package/dist/views/components/teaser/group_teaser/group_highlight.hbs +10 -0
- package/dist/views/components/teaser/group_teaser/group_teaser.hbs +8 -8
- package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +3 -1
- package/package.json +1 -1
- package/src/assets/css/custom-components.css +15 -6
- package/src/assets/fixtures/teaser/teaser_group_100.json +4 -0
- package/src/assets/fixtures/teaser/{teaser_group_100_2x_50.inc.json → teaser_groups.inc.json} +53 -0
- package/src/assets/fixtures/teaser/teaser_index.json +13 -5
- package/src/assets/fixtures/teaser/teaser_tabbox.json +43 -40
- package/src/stories/views/components/base/load_dynamic.hbs +6 -0
- package/src/stories/views/components/grid/grid.hbs +4 -4
- package/src/stories/views/components/grid/grid_group_highlight.hbs +9 -0
- package/src/stories/views/components/grid/grid_group_tabbed.hbs +3 -3
- package/src/stories/views/components/teaser/fixtures/teaser_group_100.json +1 -0
- package/src/stories/views/components/teaser/fixtures/teaser_index.json +1 -1
- package/src/stories/views/components/teaser/fixtures/teaser_tabbox.json +1 -1
- package/src/stories/views/components/teaser/group_teaser/group.stories.mdx +57 -0
- package/src/stories/views/components/teaser/group_teaser/group_highlight.hbs +10 -0
- package/src/stories/views/components/teaser/group_teaser/group_teaser.hbs +8 -8
- package/src/stories/views/components/teaser/tabbox/teaser_tabbox.hbs +3 -1
- package/src/stories/views/components/teaser/tabbox/teaser_tabbox.stories.mdx +4 -2
- package/src/stories/views/components/teaser/teaser_logic/teaser_logic.stories.mdx +3 -3
- package/dist/views/components/grid/grid_group_full.hbs +0 -9
- package/src/stories/views/components/grid/grid_group_full.hbs +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.50.7 (Tue Jul 26 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Dpe 1641 [#284](https://github.com/mumprod/hr-design-system-handlebars/pull/284) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.50.6 (Tue Jul 19 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -551,7 +551,7 @@ video {
|
|
|
551
551
|
font-size: 1.125rem;
|
|
552
552
|
line-height: 1.5rem;
|
|
553
553
|
}
|
|
554
|
-
.headline
|
|
554
|
+
.headline-barrier {
|
|
555
555
|
display: -webkit-box;
|
|
556
556
|
display: -ms-flexbox;
|
|
557
557
|
display: flex;
|
|
@@ -564,17 +564,26 @@ video {
|
|
|
564
564
|
align-items: center;
|
|
565
565
|
text-align: center;
|
|
566
566
|
}
|
|
567
|
-
.headline
|
|
568
|
-
.headline
|
|
567
|
+
.headline-barrier:before,
|
|
568
|
+
.headline-barrier:after {
|
|
569
569
|
content: '';
|
|
570
570
|
border-top: 1px solid;
|
|
571
|
-
margin: 3px
|
|
571
|
+
margin: 3px 10px 0 0;
|
|
572
572
|
-webkit-box-flex: 1;
|
|
573
573
|
-ms-flex: 1 0 20px;
|
|
574
574
|
flex: 1 0 20px;
|
|
575
575
|
}
|
|
576
|
-
.headline
|
|
577
|
-
margin: 3px 0 0
|
|
576
|
+
.headline-barrier:after {
|
|
577
|
+
margin: 3px 0 0 10px;
|
|
578
|
+
|
|
579
|
+
}
|
|
580
|
+
@media (min-width: 768px) {
|
|
581
|
+
.headline-barrier:after {
|
|
582
|
+
margin: 3px 0 0 20px;
|
|
583
|
+
}
|
|
584
|
+
.headline-barrier:before {
|
|
585
|
+
margin: 3px 20px 0 0;
|
|
586
|
+
}
|
|
578
587
|
}
|
|
579
588
|
.sr-only {
|
|
580
589
|
position: absolute;
|
|
@@ -1188,34 +1197,18 @@ video {
|
|
|
1188
1197
|
.bg-transparent {
|
|
1189
1198
|
background-color: transparent;
|
|
1190
1199
|
}
|
|
1191
|
-
.bg-gray-100 {
|
|
1192
|
-
--tw-bg-opacity: 1;
|
|
1193
|
-
background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
|
|
1194
|
-
}
|
|
1195
|
-
.bg-green-300 {
|
|
1196
|
-
--tw-bg-opacity: 1;
|
|
1197
|
-
background-color: rgba(134, 239, 172, var(--tw-bg-opacity));
|
|
1198
|
-
}
|
|
1199
|
-
.bg-gray-500 {
|
|
1200
|
-
--tw-bg-opacity: 1;
|
|
1201
|
-
background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
|
|
1202
|
-
}
|
|
1203
1200
|
.bg-white {
|
|
1204
1201
|
--tw-bg-opacity: 1;
|
|
1205
1202
|
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
1206
1203
|
}
|
|
1207
|
-
.bg-
|
|
1204
|
+
.bg-gray-500 {
|
|
1208
1205
|
--tw-bg-opacity: 1;
|
|
1209
|
-
background-color: rgba(
|
|
1206
|
+
background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
|
|
1210
1207
|
}
|
|
1211
1208
|
.bg-blue-400 {
|
|
1212
1209
|
--tw-bg-opacity: 1;
|
|
1213
1210
|
background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
|
|
1214
1211
|
}
|
|
1215
|
-
.bg-red-400 {
|
|
1216
|
-
--tw-bg-opacity: 1;
|
|
1217
|
-
background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
|
|
1218
|
-
}
|
|
1219
1212
|
.bg-labelMedia {
|
|
1220
1213
|
background-color: #006dc1;
|
|
1221
1214
|
background-color: var(--color-label-media);
|
|
@@ -1553,6 +1546,10 @@ video {
|
|
|
1553
1546
|
--tw-text-opacity: 1;
|
|
1554
1547
|
color: rgba(0, 82, 147, var(--tw-text-opacity));
|
|
1555
1548
|
}
|
|
1549
|
+
.text-blue-science {
|
|
1550
|
+
--tw-text-opacity: 1;
|
|
1551
|
+
color: rgba(0, 109, 193, var(--tw-text-opacity));
|
|
1552
|
+
}
|
|
1556
1553
|
.text-orange-spicyCarrot {
|
|
1557
1554
|
--tw-text-opacity: 1;
|
|
1558
1555
|
color: rgba(211, 70, 0, var(--tw-text-opacity));
|
|
@@ -1560,6 +1557,10 @@ video {
|
|
|
1560
1557
|
.text-opacity-50 {
|
|
1561
1558
|
--tw-text-opacity: 0.5;
|
|
1562
1559
|
}
|
|
1560
|
+
.no-underline {
|
|
1561
|
+
-webkit-text-decoration-line: none;
|
|
1562
|
+
text-decoration-line: none;
|
|
1563
|
+
}
|
|
1563
1564
|
.decoration-1 {
|
|
1564
1565
|
text-decoration-thickness: 1px;
|
|
1565
1566
|
}
|
|
@@ -2801,6 +2802,10 @@ video {
|
|
|
2801
2802
|
line-height: 1rem;
|
|
2802
2803
|
}
|
|
2803
2804
|
|
|
2805
|
+
.md\:decoration-2 {
|
|
2806
|
+
text-decoration-thickness: 2px;
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2804
2809
|
.md\:drop-shadow-md {
|
|
2805
2810
|
--tw-drop-shadow: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.07));
|
|
2806
2811
|
-webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
@@ -5,9 +5,15 @@
|
|
|
5
5
|
{{#case "components/teaser/group_teaser/group_teaser"}}
|
|
6
6
|
{{> components/teaser/group_teaser/group_teaser}}
|
|
7
7
|
{{/case}}
|
|
8
|
+
{{#case "components/teaser/group_teaser/group_highlight"}}
|
|
9
|
+
{{> components/teaser/group_teaser/group_highlight}}
|
|
10
|
+
{{/case}}
|
|
8
11
|
{{#case "components/teaser/tabbox/group_tabbox"}}
|
|
9
12
|
{{> components/teaser/tabbox/group_tabbox}}
|
|
10
13
|
{{/case}}
|
|
14
|
+
{{#case "components/teaser/tabbox/teaser_tabbox"}}
|
|
15
|
+
{{> components/teaser/tabbox/teaser_tabbox}}
|
|
16
|
+
{{/case}}
|
|
11
17
|
{{#case "components/teaser/teaser_standard"}}
|
|
12
18
|
{{> components/teaser/teaser_standard}}
|
|
13
19
|
{{/case}}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
<div class="grid
|
|
3
|
-
<div class="grid grid-cols-12 py-6 bg-
|
|
2
|
+
<div class="grid grid-page">
|
|
3
|
+
<div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
4
4
|
{{#>components/grid/grid_group size="100"}}
|
|
5
5
|
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
6
6
|
{{#>components/grid/grid_item size="12"}}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
</a>
|
|
12
12
|
{{/components/grid/grid_item}}
|
|
13
13
|
{{/components/grid/grid_group}}
|
|
14
|
-
{{#>components/grid/
|
|
14
|
+
{{#>components/grid/grid_group_highlight }}
|
|
15
15
|
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100% mit blauen Hintergrung bis Rand</h2>
|
|
16
16
|
{{#>components/grid/grid_item size="6"}}
|
|
17
17
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
6/12 = 50%
|
|
24
24
|
</div>
|
|
25
25
|
{{/components/grid/grid_item}}
|
|
26
|
-
{{/components/grid/
|
|
26
|
+
{{/components/grid/grid_group_highlight}}
|
|
27
27
|
|
|
28
28
|
{{#>components/grid/grid_group size="100"}}
|
|
29
29
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
</div>
|
|
2
|
+
<div class="grid bg-blue-400 col-full grid-page">
|
|
3
|
+
<section class="grid grid-cols-12 px-8 py-6 bg-blue-400 col-full sm:col-main gap-x-6 gap-y-9">
|
|
4
|
+
<div class="grid content-start grid-cols-12 col-span-12 gap-x-6 gap-y-6">
|
|
5
|
+
{{> @partial-block }}
|
|
6
|
+
</div>
|
|
7
|
+
</section>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
</div>
|
|
2
|
-
<
|
|
2
|
+
<section class="grid grid-cols-12 px-8 py-8 mx-4 bg-blue-400 sm:mx-0 rounded-tl-3xl rounded-br-3xl col-full sm:col-main gap-x-6 gap-y-6">
|
|
3
3
|
{{> @partial-block }}
|
|
4
|
-
</
|
|
5
|
-
<div class="grid grid-cols-12 py-6 bg-
|
|
4
|
+
</section>
|
|
5
|
+
<div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{{#>components/grid/grid_group_highlight }}
|
|
2
|
+
{{~#if this.hasGroupTitle}}
|
|
3
|
+
<h2 class="text-2xl text-center md:text-3xl col-span-full">
|
|
4
|
+
{{~#if this.hasLink}}<a class="link" href="{{this.link.url}}">{{/if~}}
|
|
5
|
+
{{this.groupTitle}}
|
|
6
|
+
{{~#if this.hasLink}}</a>{{/if~}}
|
|
7
|
+
</h2>
|
|
8
|
+
{{/if}}
|
|
9
|
+
{{~> components/teaser/teaser_logic/teaser_logic ~}}
|
|
10
|
+
{{/components/grid/grid_group_highlight}}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{{#>components/grid/grid_group size=this.teaserSize }}
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
{{~#if this.hasGroupTitle}}
|
|
3
|
+
<h2 class="text-2xl md:text-3xl headline-barrier col-span-full">
|
|
4
|
+
{{~#if this.hasLink}}<a class="no-underline hover:underline decoration-1 md:decoration-2 text-blue-science" href="{{this.link.url}}">{{/if~}}
|
|
5
|
+
{{this.groupTitle}}
|
|
6
|
+
{{~#if this.hasLink}}</a>{{/if~}}
|
|
7
|
+
</h2>
|
|
8
|
+
{{/if}}
|
|
9
|
+
{{~> components/teaser/teaser_logic/teaser_logic ~}}
|
|
10
10
|
{{/components/grid/grid_group}}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
</div>
|
|
1
2
|
<div
|
|
2
3
|
x-data="{ tab: '{{this.tabbedGroup.[0].title}}' }"
|
|
3
4
|
class="grid grid-cols-12 pt-6 md:pt-7 bg-[#dce8f0] mx-0 md:rounded-tl-3xl md:rounded-br-3xl col-main gap-x-6 gap-y-6"
|
|
@@ -19,4 +20,5 @@
|
|
|
19
20
|
</div>
|
|
20
21
|
{{~> components/teaser/teaser_logic/teaser_logic ~}}
|
|
21
22
|
</section>
|
|
22
|
-
</div>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "0.50.
|
|
9
|
+
"version": "0.50.7",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
@apply px-6 py-3 text-lg;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
.headline
|
|
34
|
+
.headline-barrier {
|
|
35
35
|
display: flex;
|
|
36
36
|
width: 100%;
|
|
37
37
|
justify-content: center;
|
|
@@ -39,15 +39,24 @@
|
|
|
39
39
|
text-align: center;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
.headline
|
|
43
|
-
.headline
|
|
42
|
+
.headline-barrier:before,
|
|
43
|
+
.headline-barrier:after {
|
|
44
44
|
content: '';
|
|
45
45
|
border-top: 1px solid;
|
|
46
|
-
margin: 3px
|
|
46
|
+
margin: 3px 10px 0 0;
|
|
47
47
|
flex: 1 0 20px;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
.headline
|
|
51
|
-
margin: 3px 0 0
|
|
50
|
+
.headline-barrier:after {
|
|
51
|
+
margin: 3px 0 0 10px;
|
|
52
|
+
|
|
53
|
+
}
|
|
54
|
+
@media screen(md) {
|
|
55
|
+
.headline-barrier:after {
|
|
56
|
+
margin: 3px 0 0 20px;
|
|
57
|
+
}
|
|
58
|
+
.headline-barrier:before {
|
|
59
|
+
margin: 3px 20px 0 0;
|
|
60
|
+
}
|
|
52
61
|
}
|
|
53
62
|
}
|
package/src/assets/fixtures/teaser/{teaser_group_100_2x_50.inc.json → teaser_groups.inc.json}
RENAMED
|
@@ -163,5 +163,58 @@
|
|
|
163
163
|
}
|
|
164
164
|
]
|
|
165
165
|
}
|
|
166
|
+
},
|
|
167
|
+
"teaser_3_33_highlight": {
|
|
168
|
+
"includePath": "components/teaser/group_teaser/group_highlight",
|
|
169
|
+
"includeModel": {
|
|
170
|
+
"hasLink": true,
|
|
171
|
+
"link": "#gruppe1",
|
|
172
|
+
"hasGroupTitle": true,
|
|
173
|
+
"groupTitle": "Gruppe 100% - 3 x 33% Teaser",
|
|
174
|
+
"teaserSize": "100",
|
|
175
|
+
"isHighlightGroup": true,
|
|
176
|
+
"logicItems": [
|
|
177
|
+
{
|
|
178
|
+
"@->jsoninclude": "teaser/teaser_standard_33_serif.json",
|
|
179
|
+
"@->overrides": [
|
|
180
|
+
{
|
|
181
|
+
"@->contentpath": "logicItem.includeModel.link.content.teaserImage",
|
|
182
|
+
"@->value": {
|
|
183
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
184
|
+
"@->contentpath": "md_1"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"@->jsoninclude": "teaser/teaser_standard_33_serif.json",
|
|
191
|
+
"@->overrides": [
|
|
192
|
+
{
|
|
193
|
+
"@->contentpath": "logicItem.includeModel.link.content.teaserImage",
|
|
194
|
+
"@->value": {
|
|
195
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
196
|
+
"@->contentpath": "md_2"
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"@->jsoninclude": "teaser/teaser_standard_33_serif.json",
|
|
203
|
+
"@->overrides": [
|
|
204
|
+
{
|
|
205
|
+
"@->contentpath": "logicItem.includeModel.link.content.teaserImage",
|
|
206
|
+
"@->value": {
|
|
207
|
+
"@->jsoninclude": "teaser/teaser_images.inc.json",
|
|
208
|
+
"@->contentpath": "md_3"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"tabBoxTeaser": {
|
|
217
|
+
"@->jsoninclude": "teaser/teaser_tabbox.json"
|
|
166
218
|
}
|
|
167
219
|
}
|
|
220
|
+
|
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"logicItems": [
|
|
3
3
|
{
|
|
4
|
-
"@->jsoninclude": "teaser/
|
|
4
|
+
"@->jsoninclude": "teaser/teaser_groups.inc.json",
|
|
5
5
|
"@->contentpath": "teaser_1_100"
|
|
6
6
|
},
|
|
7
7
|
{
|
|
8
|
-
"@->jsoninclude": "teaser/
|
|
8
|
+
"@->jsoninclude": "teaser/teaser_groups.inc.json",
|
|
9
|
+
"@->contentpath": "teaser_3_33_highlight"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"@->jsoninclude": "teaser/teaser_groups.inc.json",
|
|
9
13
|
"@->contentpath": "teaser_2_50"
|
|
10
14
|
},
|
|
11
15
|
{
|
|
12
|
-
"@->jsoninclude": "teaser/
|
|
13
|
-
"@->contentpath": "
|
|
16
|
+
"@->jsoninclude": "teaser/teaser_groups.inc.json",
|
|
17
|
+
"@->contentpath": "teaser_4_25"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"@->jsoninclude": "teaser/teaser_groups.inc.json",
|
|
21
|
+
"@->contentpath": "tabBoxTeaser"
|
|
14
22
|
},
|
|
15
23
|
{
|
|
16
|
-
"@->jsoninclude": "teaser/
|
|
24
|
+
"@->jsoninclude": "teaser/teaser_groups.inc.json",
|
|
17
25
|
"@->contentpath": "teaser_4_25"
|
|
18
26
|
}
|
|
19
27
|
]
|
|
@@ -1,42 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
2
|
+
"includePath": "components/teaser/tabbox/teaser_tabbox",
|
|
3
|
+
"includeModel": {
|
|
4
|
+
"wandaPageId": "2109595548",
|
|
5
|
+
"tabbedGroup": [
|
|
6
|
+
{
|
|
7
|
+
"title": "Nordhessen"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"title": "Mittelhessen"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"title": "Osthessen"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"title": "Rhein-Main"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"title": "Südhessen"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"logicItems": [
|
|
23
|
+
{
|
|
24
|
+
"@->jsoninclude": "teaser/teaser_group_tabbox.inc.json",
|
|
25
|
+
"@->contentpath": "tabbox_teasergroup_1"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"@->jsoninclude": "teaser/teaser_group_tabbox.inc.json",
|
|
29
|
+
"@->contentpath": "tabbox_teasergroup_2"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"@->jsoninclude": "teaser/teaser_group_tabbox.inc.json",
|
|
33
|
+
"@->contentpath": "tabbox_teasergroup_3"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"@->jsoninclude": "teaser/teaser_group_tabbox.inc.json",
|
|
37
|
+
"@->contentpath": "tabbox_teasergroup_4"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"@->jsoninclude": "teaser/teaser_group_tabbox.inc.json",
|
|
41
|
+
"@->contentpath": "tabbox_teasergroup_5"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
|
42
45
|
}
|
|
@@ -5,9 +5,15 @@
|
|
|
5
5
|
{{#case "components/teaser/group_teaser/group_teaser"}}
|
|
6
6
|
{{> components/teaser/group_teaser/group_teaser}}
|
|
7
7
|
{{/case}}
|
|
8
|
+
{{#case "components/teaser/group_teaser/group_highlight"}}
|
|
9
|
+
{{> components/teaser/group_teaser/group_highlight}}
|
|
10
|
+
{{/case}}
|
|
8
11
|
{{#case "components/teaser/tabbox/group_tabbox"}}
|
|
9
12
|
{{> components/teaser/tabbox/group_tabbox}}
|
|
10
13
|
{{/case}}
|
|
14
|
+
{{#case "components/teaser/tabbox/teaser_tabbox"}}
|
|
15
|
+
{{> components/teaser/tabbox/teaser_tabbox}}
|
|
16
|
+
{{/case}}
|
|
11
17
|
{{#case "components/teaser/teaser_standard"}}
|
|
12
18
|
{{> components/teaser/teaser_standard}}
|
|
13
19
|
{{/case}}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
<div class="grid
|
|
3
|
-
<div class="grid grid-cols-12 py-6 bg-
|
|
2
|
+
<div class="grid grid-page">
|
|
3
|
+
<div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
4
4
|
{{#>components/grid/grid_group size="100"}}
|
|
5
5
|
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100%</h2>
|
|
6
6
|
{{#>components/grid/grid_item size="12"}}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
</a>
|
|
12
12
|
{{/components/grid/grid_item}}
|
|
13
13
|
{{/components/grid/grid_group}}
|
|
14
|
-
{{#>components/grid/
|
|
14
|
+
{{#>components/grid/grid_group_highlight }}
|
|
15
15
|
<h2 class="text-4xl headline--barrier col-span-full">Gruppen 100% mit blauen Hintergrung bis Rand</h2>
|
|
16
16
|
{{#>components/grid/grid_item size="6"}}
|
|
17
17
|
<div class="flex items-center justify-center text-5xl text-white bg-gray-500 aspect-video">
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
6/12 = 50%
|
|
24
24
|
</div>
|
|
25
25
|
{{/components/grid/grid_item}}
|
|
26
|
-
{{/components/grid/
|
|
26
|
+
{{/components/grid/grid_group_highlight}}
|
|
27
27
|
|
|
28
28
|
{{#>components/grid/grid_group size="100"}}
|
|
29
29
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
</div>
|
|
2
|
+
<div class="grid bg-blue-400 col-full grid-page">
|
|
3
|
+
<section class="grid grid-cols-12 px-8 py-6 bg-blue-400 col-full sm:col-main gap-x-6 gap-y-9">
|
|
4
|
+
<div class="grid content-start grid-cols-12 col-span-12 gap-x-6 gap-y-6">
|
|
5
|
+
{{> @partial-block }}
|
|
6
|
+
</div>
|
|
7
|
+
</section>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
</div>
|
|
2
|
-
<
|
|
2
|
+
<section class="grid grid-cols-12 px-8 py-8 mx-4 bg-blue-400 sm:mx-0 rounded-tl-3xl rounded-br-3xl col-full sm:col-main gap-x-6 gap-y-6">
|
|
3
3
|
{{> @partial-block }}
|
|
4
|
-
</
|
|
5
|
-
<div class="grid grid-cols-12 py-6 bg-
|
|
4
|
+
</section>
|
|
5
|
+
<div class="grid grid-cols-12 py-6 bg-white sm:px-8 col-full sm:col-main gap-x-6 gap-y-6">
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"includePath":"components/teaser/group_teaser/group_teaser","includeModel":{"hasLink":true,"link":"#gruppe1","hasGroupTitle":true,"groupTitle":"Gruppe 100% - 2 x 50% Teaser","teaserSize":"100","logicItems":[{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_standard","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"standard-ds","teaserSize":"50","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":true,"showTeaserInfoAll":true,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":true},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isVideo":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"},"content":{"headlineTag":"h1","headingFontVariant":"serif","imageVariant":"topteaser","isFileDownload":false,"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"teaserSize":"hero","isMobile1to1":false,"teaserType":"standard-ds","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","trackingData":{"secondLevelId":"2","pageName":"hessenschau"}}}}}},{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_standard","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"standard-ds","teaserSize":"50","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":true,"showTeaserInfoAll":true,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":true},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isVideo":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":false,"displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":"","image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"},"content":{"headlineTag":"h1","headingFontVariant":"serif","imageVariant":"topteaser","isFileDownload":false,"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/191/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/191/320/180 320w, https://picsum.photos/id/191/480/270 480w, https://picsum.photos/id/191/640/360 640w, https://picsum.photos/id/191/960/540 960w, https://picsum.photos/id/191/1920/1080 1920w"}]}},"teaserSize":"hero","isMobile1to1":false,"teaserType":"standard-ds","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","trackingData":{"secondLevelId":"2","pageName":"hessenschau"}}}}}},{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_standard","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"standard-ds","teaserSize":"50","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":true,"showTeaserInfoAll":true,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":true},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isVideo":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":"true","displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":{"isAudio":true,"audioUrl":"https://hr-a.akamaihd.net/audio/hs/2022_07/220708073615_fromm.mp3","mediaMetadata":"{\"agf\":{\"title\":\"hr-fernsehen_hr_ZweimonatigeSperrungderBahnstreckezwischenFrankfurtundBadVilbel_08.07.202200:00\",\"livestream\":\"no\",\"type\":\"content\",\"airdate\":\"08.07.202200:00\",\"assetid\":\"9c736acb-79c6-4591-8e47-1b369746ab93\",\"uurl\":\"hs/2022_07/220708073615_fromm.mp3\",\"nol_c2\":\"p2,Y\",\"nol_c5\":\"p5,hessenschau\",\"nol_c7\":\"p7,hs/2022_07/220708073615_fromm.mp3\",\"program\":\"hr-fernsehen\",\"nol_c8\":\"p8,45\",\"nol_c9\":\"p9,hr_ZweimonatigeSperrungderBahnstreckezwischenFrankfurtundBadVilbel_08.07.202200:00\",\"nol_c10\":\"p10,hr-fernsehen\",\"nol_c12\":\"p12,Content\",\"nol_c18\":\"p18,N\",\"length\":\"45\",\"nol_c20\":\"p20,GFKLinkID\"},\"ati\":{\"pageName\":\"zweimonatige_sperrung_der_bahnstrecke_zwischen_frankfurt_und_bad_vilbel_audio\",\"secondLevelId\":\"12\",\"documentName\":\"audio-69346\",\"documentType\":\"hr-nt:audio\",\"documentDate\":\"202207080925\",\"chapter\":\"\",\"mediaLabel\":\"zweimonatige_sperrung_der_bahnstrecke_zwischen_frankfurt_und_bad_vilbel_audio\",\"mediaTheme1\":\"hessenschau\",\"mediaTheme2\":\"\",\"atiSiteId\":\"551104\",\"atiTrackingHost\":\"https://logs1406\"}}","teaseritem":[{"url":{"16to9":"https://www.hessenschau.de/gesellschaft/polizei-video-100~_t-1655214179068_v-16to9.jpg","16to9_retina":"https://www.hessenschau.de/gesellschaft/polizei-video-100~_t-1655214179068_v-16to9__retina.jpg"}}]},"image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"},"content":{"headlineTag":"h1","headingFontVariant":"serif","imageVariant":"topteaser","isFileDownload":false,"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"teaserSize":"hero","isMobile1to1":false,"teaserType":"standard-ds","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","trackingData":{"secondLevelId":"2","pageName":"hessenschau"}}}}}},{"isSsi":true,"logicItem":{"includePath":"components/teaser/teaser_standard","includeModel":{"byline":"Byline","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","headingFontVariant":"serif","extendedTitle":"","teaserType":"standard-ds","teaserSize":"50","isMobile1to1":false,"teaserDate":{"htmlDateTime":"2022-04-17T19:30+0200","htmlDate":"20.02.1983","date":"17.04.22","dateSeparatorTime":"17.04.22, 19:30"},"teaserInfo":{"showTeaserInfo":true,"showTeaserInfoSection":true,"showTeaserInfoChannel":true,"showTeaserInfoAll":true,"showTeaserInfoDate":false,"showTeaserInfoDateTime":true,"showTeaserInfoProgramRef":true},"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/188/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/188/320/180 320w, https://picsum.photos/id/188/480/270 480w, https://picsum.photos/id/188/640/360 640w, https://picsum.photos/id/188/960/540 960w, https://picsum.photos/id/188/1920/1080 1920w"}]}},"hasMediaButtons":false,"dontLazyload":true,"isStandardTeaser":true,"isHeroTeaser":true,"isMediaTeaser":false,"isGuide":false,"isProgram":false,"isEvent":false,"isTicker":false,"isAudio":false,"isVideo":false,"isPodcastEpisode":false,"isExtOrBrandLink":false,"isAuthor":false,"copyright":"Copyright Text","audioAuthor":"Audio Author","hasStatus":false,"hasTeaserItem":true,"allowAVConsumption":"true","displayEpgInfos":false,"aspectRatio":"ar--teaserTop","hideGeotag":false,"hideEditableByline":true,"doTracking":true,"trackingForArdMediatheksLink":false,"showMediatheksLink":false,"showAirdate":false,"showProfileInfoAsByline":false,"obsolet_brandOfTeaser":"hessenschau","documentSection":"Gesellschaft","headlineTag":"h1","icon":"ortsmarke","imageVariant":"topteaser","shorttext":"Vor einem Jahr wurde die syrische Familie Kheder aus Wolfhagen abgeschoben. Die Gemeinde setzte alle Hebel in Bewegung, um Mutter, Tochter und Sohn zurückzuholen. Im Fall der Kinder hat das nun zu einem Happy End geführt. Doch ihre Mutter fehlt.","sophoraId":"rueckkehr-nach-abschiebung-wolfhagen--100","profiles":"Von Alf Haubitz und Alice Merton","teaserLead":{"avDocument":{"isVideo":true,"videoUrl":"https://hr-a.akamaihd.net/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_512x288-25p-500kbit.mp4","adaptiveStreamingUrl":"https://hr-vh.akamaihd.net/i/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_,480x270-50p-700kbit,512x288-25p-500kbit,640x360-50p-1200kbit,960x540-50p-1600kbit,1280x720-50p-3200kbit,1920x1080-50p-5000kbit,.mp4.csmil/master.m3u8","videoResolutionLevels":[{"url":"https://hr-a.akamaihd.net/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_480x270-50p-700kbit.mp4","verticalResolution":"270"},{"url":"https://hr-a.akamaihd.net/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_512x288-25p-500kbit.mp4","verticalResolution":"288"},{"url":"https://hr-a.akamaihd.net/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_640x360-50p-1200kbit.mp4","verticalResolution":"360"},{"url":"https://hr-a.akamaihd.net/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_960x540-50p-1600kbit.mp4","verticalResolution":"540"},{"url":"https://hr-a.akamaihd.net/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_1280x720-50p-3200kbit.mp4","verticalResolution":"720"},{"url":"https://hr-a.akamaihd.net/video/as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_1920x1080-50p-5000kbit.mp4","verticalResolution":"1080"}],"videoSubtitleUrl":"","mediaMetadata":"{\"agf\":{\"title\":\"hr-fernsehen__VideozeigtrassistischeBeleidigungdurchPolizisten_14.06.202200:00\",\"livestream\":\"no\",\"type\":\"content\",\"airdate\":\"14.06.202200:00\",\"program\":\"hr-fernsehen\",\"assetid\":\"5f3912d337889c6c64e48879d80c562b\",\"uurl\":\"as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_512x288-25p-500kbit.mp4\",\"nol_c2\":\"p2,Y\",\"nol_c5\":\"p5,hessenschau\",\"nol_c7\":\"p7,as/hs/2022_06/hrLogo_220614153555_sf14xtiktokpolizeidieckmannhauffheinneuneu_18520763_512x288-25p-500kbit.mp4\",\"nol_c8\":\"p8,19\",\"nol_c9\":\"p9,_VideozeigtrassistischeBeleidigungdurchPolizisten_14.06.202200:00\",\"nol_c10\":\"p10,hr-fernsehen\",\"nol_c12\":\"p12,Content\",\"nol_c18\":\"p18,N\",\"length\":\"19\",\"nol_c20\":\"p20,GFKLinkID\"},\"ati\":{\"pageName\":\"video_zeigt_rassistische_beleidigung_durch_polizisten_video\",\"secondLevelId\":\"4\",\"documentName\":\"video-170288\",\"documentType\":\"hr-nt:video\",\"documentDate\":\"202206141656\",\"chapter\":\"\",\"mediaLabel\":\"video_zeigt_rassistische_beleidigung_durch_polizisten_video\",\"mediaTheme1\":\"hessenschau\",\"mediaTheme2\":\"\",\"atiSiteId\":\"551104\",\"atiTrackingHost\":\"https://logs1406\"}}","providerKeyWithSublines":"","teaseritem":[{"url":{"16to9":"https://www.hessenschau.de/gesellschaft/polizei-video-100~_t-1655214179068_v-16to9.jpg","16to9_retina":"https://www.hessenschau.de/gesellschaft/polizei-video-100~_t-1655214179068_v-16to9__retina.jpg"}}]},"image":""},"geotag":[{"title":"Wolfhagen"}],"link":{"url":"/teaser1","webviewUrl":"/teaser1#webview","isTargetBlank":false,"hasIcon":false,"iconName":"iconName","readMoreText":{"readMoreScreenreader":"Zum Artikel","readMore":"mehr","readMoreLong":"read More Long"},"content":{"headlineTag":"h1","headingFontVariant":"serif","imageVariant":"topteaser","isFileDownload":false,"teaserImage":{"alttext":"Lorem ipsum","copyrightWithLinks":"","responsiveImage":{"asPicture":false,"asImage":true,"fallback":"https://picsum.photos/id/191/480/270","sources":[{"sizes":"(min-width: 1010px) 960px, 100vw","srcset":"https://picsum.photos/id/191/320/180 320w, https://picsum.photos/id/191/480/270 480w, https://picsum.photos/id/191/640/360 640w, https://picsum.photos/id/191/960/540 960w, https://picsum.photos/id/191/1920/1080 1920w"}]}},"teaserSize":"hero","isMobile1to1":false,"teaserType":"standard-ds","title":"Abgeschobene Geschwister aus Syrien zurück in Wolfhagen","topline":"Überglücklich, aber ohne Mama","trackingData":{"secondLevelId":"2","pageName":"hessenschau"}}}}}}]}}
|