hr-design-system-handlebars 0.45.1 → 0.47.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.
Files changed (139) hide show
  1. package/.storybook/preview.js +1 -1
  2. package/CHANGELOG.md +36 -0
  3. package/dist/assets/index.css +61 -39
  4. package/dist/views/components/base/image/responsive_image.hbs +11 -11
  5. package/dist/views/components/base/link.hbs +8 -8
  6. package/dist/views/components/base/load_dynamic.hbs +5 -2
  7. package/dist/views/components/page/page.hbs +14 -14
  8. package/dist/views/components/{header → site_header}/anchor_navigation/anchor_navigation.hbs +0 -0
  9. package/dist/views/components/{header → site_header}/anchor_navigation/featurebox_anchor.hbs +0 -0
  10. package/{src/stories/views/components/header → dist/views/components/site_header}/brand_navigation/brand_navigation.hbs +1 -1
  11. package/dist/views/components/{header → site_header}/brand_navigation/brand_navigation_item.hbs +0 -0
  12. package/dist/views/components/{header → site_header}/burger.hbs +0 -0
  13. package/dist/views/components/{header → site_header}/header.hbs +9 -9
  14. package/dist/views/components/{header → site_header}/header_alpine.js +0 -0
  15. package/{src/stories/views/components/header → dist/views/components/site_header}/navigation_flyout/navigation_flyout.hbs +2 -3
  16. package/dist/views/components/{header → site_header}/navigation_flyout/navigation_flyout_column.hbs +1 -2
  17. package/dist/views/components/site_header/navigation_flyout/navigation_flyout_item.hbs +7 -0
  18. package/dist/views/components/{header/search → site_header/navigation_search}/quick_search_button.hbs +0 -0
  19. package/dist/views/components/{header/search → site_header/navigation_search}/quick_search_form.hbs +0 -0
  20. package/dist/views/components/{header → site_header}/section_navigation/section_navigation.hbs +1 -1
  21. package/{src/stories/views/components/header → dist/views/components/site_header}/section_navigation/section_navigation_item.hbs +1 -1
  22. package/dist/views/components/{header → site_header}/service_logo.hbs +0 -0
  23. package/dist/views/components/{header → site_header}/service_navigation/service_list.hbs +1 -1
  24. package/dist/views/components/{header → site_header}/service_navigation/service_navigation_item.hbs +1 -1
  25. package/dist/views/components/teaser/components/teaser_byline.hbs +5 -4
  26. package/dist/views/components/teaser/components/teaser_comments.hbs +3 -3
  27. package/dist/views/components/teaser/components/teaser_heading.hbs +11 -13
  28. package/dist/views/components/teaser/components/teaser_text.hbs +8 -1
  29. package/dist/views/components/teaser/components/teaser_title.hbs +13 -1
  30. package/dist/views/components/teaser/components/teaser_topline.hbs +1 -1
  31. package/dist/views/components/teaser/teaser_alternativ.hbs +15 -9
  32. package/dist/views/components/teaser/teaser_poster.hbs +13 -0
  33. package/dist/views/components/teaser/teaser_standard.hbs +18 -9
  34. package/package.json +1 -1
  35. package/src/assets/fixtures/teaser/teaser_alternative_100_serif.json +14 -0
  36. package/src/assets/fixtures/teaser/teaser_alternative_25_serif.json +21 -0
  37. package/src/assets/fixtures/teaser/teaser_alternative_33_serif.json +21 -0
  38. package/src/assets/fixtures/teaser/teaser_alternative_50_serif.json +14 -0
  39. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif.json +10 -0
  40. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_comments.json +10 -0
  41. package/src/assets/fixtures/teaser/teaser_alternative_hero_serif_label.json +21 -0
  42. package/src/assets/fixtures/teaser/teaser_group_100_2x_50.inc.json +27 -28
  43. package/src/assets/fixtures/teaser/teaser_images.inc.json +139 -102
  44. package/src/assets/fixtures/teaser/teaser_poster_lg.json +29 -0
  45. package/src/assets/fixtures/teaser/teaser_poster_md.json +28 -0
  46. package/src/assets/fixtures/teaser/teaser_poster_md_label.json +74 -0
  47. package/src/assets/fixtures/teaser/{teaser_standard_xl_serif.json → teaser_standard_100_serif.json} +2 -2
  48. package/src/assets/fixtures/teaser/{teaser_standard_sm_serif.json → teaser_standard_25_serif.json} +4 -4
  49. package/src/assets/fixtures/teaser/{teaser_standard_md_serif.json → teaser_standard_33_serif.json} +4 -4
  50. package/src/assets/fixtures/teaser/{teaser_standard_lg_serif.json → teaser_standard_50_serif.json} +2 -2
  51. package/src/assets/fixtures/teaser/{teaser_standard_xxl_serif.json → teaser_standard_hero_serif.json} +0 -0
  52. package/src/assets/fixtures/teaser/{teaser_standard_xxl_serif_comments.json → teaser_standard_hero_serif_comments.json} +0 -0
  53. package/src/assets/fixtures/teaser/{teaser_standard_xxl_serif_label.json → teaser_standard_hero_serif_label.json} +0 -7
  54. package/src/assets/fixtures/teaser/teasers.inc.json +47 -38
  55. package/src/stories/views/components/base/image/responsive_image.hbs +11 -11
  56. package/src/stories/views/components/base/link.hbs +8 -8
  57. package/src/stories/views/components/base/load_dynamic.hbs +5 -2
  58. package/src/stories/views/components/page/page.hbs +14 -14
  59. package/src/stories/views/components/page/page.stories.mdx +22 -13
  60. package/src/stories/views/components/{header → site_header}/anchor_navigation/anchor_navigation.hbs +0 -0
  61. package/src/stories/views/components/{header → site_header}/anchor_navigation/featurebox_anchor.hbs +0 -0
  62. package/src/stories/views/components/{header → site_header}/brandNavigationData.json +0 -0
  63. package/{dist/views/components/header → src/stories/views/components/site_header}/brand_navigation/brand_navigation.hbs +1 -1
  64. package/src/stories/views/components/{header → site_header}/brand_navigation/brand_navigation.stories.mdx +0 -0
  65. package/src/stories/views/components/{header → site_header}/brand_navigation/brand_navigation_item.hbs +0 -0
  66. package/src/stories/views/components/{header → site_header}/brand_navigation/brand_navigation_item.stories.mdx +0 -0
  67. package/src/stories/views/components/{header → site_header}/burger.hbs +0 -0
  68. package/src/stories/views/components/{header → site_header}/header.hbs +9 -9
  69. package/src/stories/views/components/{header → site_header}/header_.stories.mdx +0 -0
  70. package/src/stories/views/components/{header → site_header}/header_alpine.js +0 -0
  71. package/src/stories/views/components/{header → site_header}/navigation.json +33 -99
  72. package/src/stories/views/components/site_header/navigation2.json +588 -0
  73. package/src/stories/views/components/site_header/navigation3.json +646 -0
  74. package/src/stories/views/components/{header → site_header}/navigation4.json +40 -120
  75. package/{dist/views/components/header → src/stories/views/components/site_header}/navigation_flyout/navigation_flyout.hbs +2 -3
  76. package/src/stories/views/components/{header → site_header}/navigation_flyout/navigation_flyout.stories.mdx +0 -0
  77. package/src/stories/views/components/{header → site_header}/navigation_flyout/navigation_flyout_column.hbs +1 -2
  78. package/src/stories/views/components/site_header/navigation_flyout/navigation_flyout_item.hbs +7 -0
  79. package/src/stories/views/components/{header/search → site_header/navigation_search}/quick_search_button.hbs +0 -0
  80. package/src/stories/views/components/{header/search → site_header/navigation_search}/quick_search_button.stories.mdx +0 -0
  81. package/src/stories/views/components/{header/search → site_header/navigation_search}/quick_search_form.hbs +0 -0
  82. package/src/stories/views/components/{header/search → site_header/navigation_search}/quick_search_form.stories.mdx +0 -0
  83. package/src/stories/views/components/{header → site_header}/sectionNavigationData.json +0 -0
  84. package/src/stories/views/components/{header → site_header}/section_navigation/section_navigation.hbs +1 -1
  85. package/src/stories/views/components/{header → site_header}/section_navigation/section_navigation.stories.mdx +0 -0
  86. package/{dist/views/components/header → src/stories/views/components/site_header}/section_navigation/section_navigation_item.hbs +1 -1
  87. package/src/stories/views/components/{header → site_header}/section_navigation/section_navigation_item.stories.mdx +0 -0
  88. package/src/stories/views/components/{header → site_header}/serviceNavigationData.json +0 -0
  89. package/src/stories/views/components/{header → site_header}/service_logo.hbs +0 -0
  90. package/src/stories/views/components/{header → site_header}/service_navigation/service_list.hbs +1 -1
  91. package/src/stories/views/components/{header → site_header}/service_navigation/service_list.stories.mdx +0 -0
  92. package/src/stories/views/components/{header → site_header}/service_navigation/service_navigation_item.hbs +1 -1
  93. package/src/stories/views/components/{header → site_header}/service_navigation/service_navigation_item.stories.mdx +0 -0
  94. package/src/stories/views/components/teaser/components/teaser_byline.hbs +5 -4
  95. package/src/stories/views/components/teaser/components/teaser_byline.stories.mdx +18 -18
  96. package/src/stories/views/components/teaser/components/teaser_comments.hbs +3 -3
  97. package/src/stories/views/components/teaser/components/teaser_heading.hbs +11 -13
  98. package/src/stories/views/components/teaser/components/teaser_heading.stories.mdx +106 -119
  99. package/src/stories/views/components/teaser/components/teaser_text.hbs +8 -1
  100. package/src/stories/views/components/teaser/components/teaser_text.stories.mdx +44 -44
  101. package/src/stories/views/components/teaser/components/teaser_title.hbs +13 -1
  102. package/src/stories/views/components/teaser/components/teaser_title.stories.mdx +66 -48
  103. package/src/stories/views/components/teaser/components/teaser_topline.hbs +1 -1
  104. package/src/stories/views/components/teaser/fixtures/teaser_alternative_100_serif.json +1 -0
  105. package/src/stories/views/components/teaser/fixtures/teaser_alternative_25_serif.json +1 -0
  106. package/src/stories/views/components/teaser/fixtures/teaser_alternative_33_serif.json +1 -0
  107. package/src/stories/views/components/teaser/fixtures/teaser_alternative_50_serif.json +1 -0
  108. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif.json +1 -0
  109. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_comments.json +1 -0
  110. package/src/stories/views/components/teaser/fixtures/teaser_alternative_hero_serif_label.json +1 -0
  111. package/src/stories/views/components/teaser/fixtures/teaser_comments_without_teaserinfo.json +1 -1
  112. package/src/stories/views/components/teaser/fixtures/teaser_index.json +1 -1
  113. package/src/stories/views/components/teaser/fixtures/teaser_poster_lg.json +1 -0
  114. package/src/stories/views/components/teaser/fixtures/teaser_poster_md.json +1 -0
  115. package/src/stories/views/components/teaser/fixtures/teaser_poster_md_label.json +1 -0
  116. package/src/stories/views/components/teaser/fixtures/teaser_standard_100_serif.json +1 -0
  117. package/src/stories/views/components/teaser/fixtures/teaser_standard_25_serif.json +1 -0
  118. package/src/stories/views/components/teaser/fixtures/teaser_standard_33_serif.json +1 -0
  119. package/src/stories/views/components/teaser/fixtures/teaser_standard_50_serif.json +1 -0
  120. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif.json +1 -0
  121. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_comments.json +1 -0
  122. package/src/stories/views/components/teaser/fixtures/teaser_standard_hero_serif_label.json +1 -0
  123. package/src/stories/views/components/teaser/teaser_alternativ.hbs +15 -9
  124. package/src/stories/views/components/teaser/teaser_alternativ.stories.mdx +52 -54
  125. package/src/stories/views/components/teaser/teaser_poster.hbs +13 -0
  126. package/src/stories/views/components/teaser/teaser_poster.stories.mdx +53 -0
  127. package/src/stories/views/components/teaser/teaser_standard.hbs +18 -9
  128. package/src/stories/views/components/teaser/teaser_standard.stories.mdx +20 -17
  129. package/dist/views/components/header/navigation_flyout/navigation_flyout_item.hbs +0 -8
  130. package/src/stories/views/components/header/navigation2.json +0 -653
  131. package/src/stories/views/components/header/navigation3.json +0 -725
  132. package/src/stories/views/components/header/navigation_flyout/navigation_flyout_item.hbs +0 -8
  133. package/src/stories/views/components/teaser/fixtures/teaser_standard_lg_serif.json +0 -1
  134. package/src/stories/views/components/teaser/fixtures/teaser_standard_md_serif.json +0 -1
  135. package/src/stories/views/components/teaser/fixtures/teaser_standard_sm_serif.json +0 -1
  136. package/src/stories/views/components/teaser/fixtures/teaser_standard_xl_serif.json +0 -1
  137. package/src/stories/views/components/teaser/fixtures/teaser_standard_xxl_serif.json +0 -1
  138. package/src/stories/views/components/teaser/fixtures/teaser_standard_xxl_serif_comments.json +0 -1
  139. package/src/stories/views/components/teaser/fixtures/teaser_standard_xxl_serif_label.json +0 -1
@@ -8,7 +8,7 @@ import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport'
8
8
 
9
9
  import Initializer from '../build/webpack/feature-loader/initializer/initializer'
10
10
  import loadFeature from '../build/webpack/feature-loader/initializer/loader'
11
- import 'components/header/header_alpine'
11
+ import 'components/site_header/header_alpine'
12
12
 
13
13
  function loadDelayedImages(){setTimeout((function(){var t,e=document.images,s=[],a=function(t){void 0!==window.picturefill&&window.picturefill({reevaluate:!0,elements:t})};for(var i=0;i<e.length;++i)(t=e[i].dataset?e[i].dataset.srcset:e[i].getAttribute("data-srcset"))&&(0===e[i].getBoundingClientRect().top?s.push(e[i]):e[i].setAttribute("srcset",t));a(e),setTimeout((function(){var t;for(var i=0;i<s.length;++i)t=s[i].dataset?s[i].dataset.srcset:s[i].getAttribute("data-srcset"),s[i].setAttribute("srcset",t);a(s)}),900)}),0)}
14
14
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,39 @@
1
+ # v0.47.1 (Tue May 24 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - add poster-teaser [#235](https://github.com/mumprod/hr-design-system-handlebars/pull/235) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
13
+ # v0.47.0 (Fri May 20 2022)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - Feature/dpe 1579 [#234](https://github.com/mumprod/hr-design-system-handlebars/pull/234) ([@szuelch](https://github.com/szuelch))
18
+
19
+ #### Authors: 1
20
+
21
+ - [@szuelch](https://github.com/szuelch)
22
+
23
+ ---
24
+
25
+ # v0.46.0 (Fri May 13 2022)
26
+
27
+ #### 🚀 Enhancement
28
+
29
+ - renamed folders header and search to site_header and navigation_search [#233](https://github.com/mumprod/hr-design-system-handlebars/pull/233) ([@StefanVesper](https://github.com/StefanVesper))
30
+
31
+ #### Authors: 1
32
+
33
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
34
+
35
+ ---
36
+
1
37
  # v0.45.1 (Fri May 13 2022)
2
38
 
3
39
  #### 🐛 Bug Fix
@@ -1554,6 +1554,9 @@ Ensure the default browser behavior of the `hidden` attribute.
1554
1554
  .\!mt-4 {
1555
1555
  margin-top: 1rem !important;
1556
1556
  }
1557
+ .ml-2 {
1558
+ margin-left: 0.5rem;
1559
+ }
1557
1560
  .-mt-2 {
1558
1561
  margin-top: -0.5rem;
1559
1562
  }
@@ -1566,8 +1569,8 @@ Ensure the default browser behavior of the `hidden` attribute.
1566
1569
  .-mt-10 {
1567
1570
  margin-top: -2.5rem;
1568
1571
  }
1569
- .ml-2 {
1570
- margin-left: 0.5rem;
1572
+ .mb-7 {
1573
+ margin-bottom: 1.75rem;
1571
1574
  }
1572
1575
  .mr-4 {
1573
1576
  margin-right: 1rem;
@@ -1902,6 +1905,14 @@ Ensure the default browser behavior of the `hidden` attribute.
1902
1905
  --tw-divide-opacity: 1;
1903
1906
  border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
1904
1907
  }
1908
+ .self-end {
1909
+ -ms-flex-item-align: end;
1910
+ align-self: flex-end;
1911
+ }
1912
+ .self-center {
1913
+ -ms-flex-item-align: center;
1914
+ align-self: center;
1915
+ }
1905
1916
  .overflow-hidden {
1906
1917
  overflow: hidden;
1907
1918
  }
@@ -1972,6 +1983,10 @@ Ensure the default browser behavior of the `hidden` attribute.
1972
1983
  .border-r {
1973
1984
  border-right-width: 1px;
1974
1985
  }
1986
+ .border-white {
1987
+ --tw-border-opacity: 1;
1988
+ border-color: rgba(255, 255, 255, var(--tw-border-opacity));
1989
+ }
1975
1990
  .border-gray-200 {
1976
1991
  --tw-border-opacity: 1;
1977
1992
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
@@ -1980,10 +1995,6 @@ Ensure the default browser behavior of the `hidden` attribute.
1980
1995
  --tw-border-opacity: 1;
1981
1996
  border-color: rgba(0, 82, 147, var(--tw-border-opacity));
1982
1997
  }
1983
- .border-white {
1984
- --tw-border-opacity: 1;
1985
- border-color: rgba(255, 255, 255, var(--tw-border-opacity));
1986
- }
1987
1998
  .bg-red-200 {
1988
1999
  --tw-bg-opacity: 1;
1989
2000
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
@@ -2024,17 +2035,6 @@ Ensure the default browser behavior of the `hidden` attribute.
2024
2035
  --tw-bg-opacity: 1;
2025
2036
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
2026
2037
  }
2027
- .bg-current {
2028
- background-color: currentColor;
2029
- }
2030
- .bg-blue-congress {
2031
- --tw-bg-opacity: 1;
2032
- background-color: rgba(0, 82, 147, var(--tw-bg-opacity));
2033
- }
2034
- .bg-gray-800 {
2035
- --tw-bg-opacity: 1;
2036
- background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
2037
- }
2038
2038
  .bg-labelMedia {
2039
2039
  background-color: #006dc1;
2040
2040
  background-color: var(--color-label-media);
@@ -2071,14 +2071,33 @@ Ensure the default browser behavior of the `hidden` attribute.
2071
2071
  background-color: #d34600;
2072
2072
  background-color: var(--color-label-live);
2073
2073
  }
2074
+ .bg-current {
2075
+ background-color: currentColor;
2076
+ }
2077
+ .bg-blue-congress {
2078
+ --tw-bg-opacity: 1;
2079
+ background-color: rgba(0, 82, 147, var(--tw-bg-opacity));
2080
+ }
2081
+ .bg-gray-800 {
2082
+ --tw-bg-opacity: 1;
2083
+ background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
2084
+ }
2074
2085
  .bg-gradient-to-r {
2075
2086
  background-image: -webkit-gradient(linear, left top, right top, from(var(--tw-gradient-stops)));
2076
2087
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
2077
2088
  }
2089
+ .bg-gradient-to-t {
2090
+ background-image: -webkit-gradient(linear, left bottom, left top, from(var(--tw-gradient-stops)));
2091
+ background-image: linear-gradient(to top, var(--tw-gradient-stops));
2092
+ }
2078
2093
  .from-purple-50 {
2079
2094
  --tw-gradient-from: #faf5ff;
2080
2095
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0));
2081
2096
  }
2097
+ .from-black {
2098
+ --tw-gradient-from: #000000;
2099
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
2100
+ }
2082
2101
  .to-purple-100 {
2083
2102
  --tw-gradient-to: #f3e8ff;
2084
2103
  }
@@ -2112,6 +2131,14 @@ Ensure the default browser behavior of the `hidden` attribute.
2112
2131
  padding-top: 2rem;
2113
2132
  padding-bottom: 2rem;
2114
2133
  }
2134
+ .px-1\.5 {
2135
+ padding-left: 0.375rem;
2136
+ padding-right: 0.375rem;
2137
+ }
2138
+ .px-1 {
2139
+ padding-left: 0.25rem;
2140
+ padding-right: 0.25rem;
2141
+ }
2115
2142
  .px-5 {
2116
2143
  padding-left: 1.25rem;
2117
2144
  padding-right: 1.25rem;
@@ -2124,13 +2151,9 @@ Ensure the default browser behavior of the `hidden` attribute.
2124
2151
  padding-top: 0.75rem;
2125
2152
  padding-bottom: 0.75rem;
2126
2153
  }
2127
- .px-1\.5 {
2128
- padding-left: 0.375rem;
2129
- padding-right: 0.375rem;
2130
- }
2131
- .px-1 {
2132
- padding-left: 0.25rem;
2133
- padding-right: 0.25rem;
2154
+ .px-2 {
2155
+ padding-left: 0.5rem;
2156
+ padding-right: 0.5rem;
2134
2157
  }
2135
2158
  .px-3\.5 {
2136
2159
  padding-left: 0.875rem;
@@ -2144,10 +2167,6 @@ Ensure the default browser behavior of the `hidden` attribute.
2144
2167
  padding-top: 0.5rem;
2145
2168
  padding-bottom: 0.5rem;
2146
2169
  }
2147
- .px-2 {
2148
- padding-left: 0.5rem;
2149
- padding-right: 0.5rem;
2150
- }
2151
2170
  .py-1\.5 {
2152
2171
  padding-top: 0.375rem;
2153
2172
  padding-bottom: 0.375rem;
@@ -2164,15 +2183,15 @@ Ensure the default browser behavior of the `hidden` attribute.
2164
2183
  padding-left: 1rem;
2165
2184
  padding-right: 1rem;
2166
2185
  }
2186
+ .pt-px {
2187
+ padding-top: 1px;
2188
+ }
2167
2189
  .pl-4 {
2168
2190
  padding-left: 1rem;
2169
2191
  }
2170
2192
  .pr-2 {
2171
2193
  padding-right: 0.5rem;
2172
2194
  }
2173
- .pt-px {
2174
- padding-top: 1px;
2175
- }
2176
2195
  .pt-1 {
2177
2196
  padding-top: 0.25rem;
2178
2197
  }
@@ -2206,6 +2225,9 @@ Ensure the default browser behavior of the `hidden` attribute.
2206
2225
  .text-left {
2207
2226
  text-align: left;
2208
2227
  }
2228
+ .text-center {
2229
+ text-align: center;
2230
+ }
2209
2231
  .align-top {
2210
2232
  vertical-align: top;
2211
2233
  }
@@ -2309,14 +2331,14 @@ Ensure the default browser behavior of the `hidden` attribute.
2309
2331
  --tw-text-opacity: 1;
2310
2332
  color: rgba(255, 255, 255, var(--tw-text-opacity));
2311
2333
  }
2312
- .text-blue-congress {
2313
- --tw-text-opacity: 1;
2314
- color: rgba(0, 82, 147, var(--tw-text-opacity));
2315
- }
2316
2334
  .text-grey-scorpion {
2317
2335
  --tw-text-opacity: 1;
2318
2336
  color: rgba(96, 96, 96, var(--tw-text-opacity));
2319
2337
  }
2338
+ .text-blue-congress {
2339
+ --tw-text-opacity: 1;
2340
+ color: rgba(0, 82, 147, var(--tw-text-opacity));
2341
+ }
2320
2342
  .text-toplineColor {
2321
2343
  color: #006dc1;
2322
2344
  color: var(--color-topline);
@@ -2543,14 +2565,14 @@ Ensure the default browser behavior of the `hidden` attribute.
2543
2565
  --tw-bg-opacity: 1;
2544
2566
  background-color: rgba(0, 82, 147, var(--tw-bg-opacity));
2545
2567
  }
2546
- .hover\:text-white:hover {
2547
- --tw-text-opacity: 1;
2548
- color: rgba(255, 255, 255, var(--tw-text-opacity));
2549
- }
2550
2568
  .hover\:text-toplineColor:hover {
2551
2569
  color: #006dc1;
2552
2570
  color: var(--color-topline);
2553
2571
  }
2572
+ .hover\:text-white:hover {
2573
+ --tw-text-opacity: 1;
2574
+ color: rgba(255, 255, 255, var(--tw-text-opacity));
2575
+ }
2554
2576
  .hover\:underline:hover {
2555
2577
  -webkit-text-decoration-line: underline;
2556
2578
  text-decoration-line: underline;
@@ -10,12 +10,12 @@
10
10
  '_disableNoScript' don't add no script fallback
11
11
 
12
12
  --}}
13
- {{#withParam this.responsiveImage _type _variant }}
13
+ {{#withParam this.responsiveImage type variant }}
14
14
  {{#if this.asPicture}}
15
- <picture class="picture {{~#if ../_addClass}} {{../_addClass}}{{/if}}">
15
+ <picture class="picture {{~#if ../addClass}} {{../addClass}}{{/if}}">
16
16
  {{#unless _disableNoScript}}
17
17
  <noscript>
18
- <img class="image {{~#if ../_addClassImg}} {{../_addClassImg}}{{/if}}" src="{{this.fallback}}" alt="{{#if ../_alttext}}{{../_alttext}}{{else}}{{../this.alttext}}{{/if}}">
18
+ <img class="image {{~#if ../addClassImg}} {{../addClassImg}}{{/if}}" src="{{this.fallback}}" alt="{{#if ../alttext}}{{../alttext}}{{else}}{{../this.alttext}}{{/if}}">
19
19
  </noscript>
20
20
  {{/unless}}
21
21
  {{#with this.sources}}
@@ -25,24 +25,24 @@
25
25
  {{#with this.srcset}} srcset="{{this}}"{{/with}}>
26
26
  {{/each}}
27
27
  {{/with}}
28
- <img class="image {{~#if ../_addClassImg}} {{../_addClassImg}}{{/if}}" loading="{{#if ../_noDelay}}auto{{else}}lazy{{/if}}" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" alt="{{#if ../_alttext}}{{../_alttext}}{{else}}{{../this.alttext}}{{/if}}" {{~#if ../_errorHandler }} onerror="this.onerror=null; {{../_errorHandler}}"{{/if}}>
28
+ <img class="image {{~#if ../addClassImg}} {{../addClassImg}}{{/if}}" loading="{{#if ../noDelay}}auto{{else}}lazy{{/if}}" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" alt="{{#if ../alttext}}{{../alttext}}{{else}}{{../this.alttext}}{{/if}}" {{~#if ../errorHandler }} onerror="this.onerror=null; {{../errorHandler}}"{{/if}}>
29
29
  </picture>
30
30
  {{/if}}
31
31
 
32
32
  {{#if this.asImage}}
33
33
  {{#with this.sources.[0]}}
34
- {{~#with ../../_addClass }}<div class="{{this}}">{{/with}}
35
- {{#unless ../../_disableNoScript}}
34
+ {{~#with ../../addClass }}<div class="{{this}}">{{/with}}
35
+ {{#unless ../../disableNoScript}}
36
36
  <noscript>
37
- <img class="image {{~#if ../../_addClassImg}} {{../../_addClassImg}}{{/if}}" src="{{../this.fallback}}" alt="{{#if ../../_alttext}}{{../../_alttext}}{{else}}{{../../this.alttext}}{{/if}}">
37
+ <img class="image {{~#if ../../addClassImg}} {{../../addClassImg}}{{/if}}" src="{{../this.fallback}}" alt="{{#if ../../alttext}}{{../../alttext}}{{else}}{{../../this.alttext}}{{/if}}">
38
38
  </noscript>
39
39
  {{/unless}}
40
40
  <img {{#with this.sizes}}sizes="{{this}}" {{/with~}}
41
- loading="{{#if ../../_noDelay}}auto{{else}}lazy{{/if}}"
42
- {{#with this.srcset}} {{#if ../../../_noDelay}}srcset{{else}}data-srcset{{/if}}="{{this}}"{{/with}}
41
+ loading="{{#if ../../noDelay}}auto{{else}}lazy{{/if}}"
42
+ {{#with this.srcset}} {{#if ../../../noDelay}}srcset{{else}}data-srcset{{/if}}="{{this}}"{{/with}}
43
43
  src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
44
- alt="{{#if ../../_alttext}}{{../../_alttext}}{{else}}{{../../this.alttext}}{{/if}}" class="image imageSimple {{~#with ../../_addClassImg }} {{this}}{{/with}}" {{~#if ../../_errorHandler}} onerror="this.onerror=null; {{../../_errorHandler}}" {{~/if}}>
45
- {{~#with ../../_addClass }}</div>{{/with}}
44
+ alt="{{#if ../../alttext}}{{../../alttext}}{{else}}{{../../this.alttext}}{{/if}}" class="image imageSimple {{~#with ../../addClassImg }} {{this}}{{/with}}" {{~#if ../../errorHandler}} onerror="this.onerror=null; {{../../errorHandler}}" {{~/if}}>
45
+ {{~#with ../../addClass }}</div>{{/with}}
46
46
  {{/with}}
47
47
 
48
48
  {{/if}}
@@ -1,19 +1,19 @@
1
1
  {{#with this.link}}
2
2
  <a {{#with this.webviewUrl}}data-webviewurl="{{this}}"{{/with}} href="{{this.url}}" {{#with this.webviewUrl}}{{/with}}
3
- class="sb-link {{#if ../_cssClasses}} {{../_cssClasses}}{{/if}}{{#if _doTracking}} js-load{{else}}{{#if ../this.content.isFileDownload}} js-loadScript{{/if}}{{/if}}{{#if _isSelected}} {{defaultIfEmpty _selectedCssClass "-current"}}{{/if}}"
4
- {{#if ../_doNavigationTracking}}
5
- data-new-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "1","clickLabel":"{{../_clickLabelType}}{{#if ../_clickLabelPrefix1}}::{{../_clickLabelPrefix1}}{{/if}}::{{../_clickLabelPrefix2}}-Link geklickt"}]}'
3
+ class="sb-link{{#if ../css}} {{../css}}{{/if}}{{#if ../doTracking}} js-load{{else}}{{#if ../this.content.isFileDownload}} js-loadScript{{/if}}{{/if}}{{#if ../isSelected}} {{defaultIfEmpty ../selectedCssClass "-current"}}{{/if}}"
4
+ {{#if ../doNavigationTracking}}
5
+ data-new-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "1","clickLabel":"{{../clickLabelType}}{{#if ../clickLabelPrefix1}}::{{../clickLabelPrefix1}}{{/if}}::{{../clickLabelPrefix2}}-Link geklickt"}]}'
6
6
  {{/if}}
7
- {{#if ../_doTracking}}
8
- {{#with this.content.trackingData}}data-new-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "{{#if ../this.content.isFileDownload}}{{this.pageName}}{{else}}mediabuttonclick::{{_clickLabelPrefix1}}::{{_clickLabelPrefix2}}{{/if}}"}]}'{{/with}}
7
+ {{#if ../doTracking}}
8
+ {{#with this.content.trackingData}}data-new-hr-click-tracking='{"settings": [{"type":"uxAction","secondLevelId": "{{this.secondLevelId}}","clickLabel": "{{#if ../this.content.isFileDownload}}{{this.pageName}}{{else}}mediabuttonclick::{{../../clickLabelPrefix1}}::{{../../clickLabelPrefix2}}{{/if}}"}]}'{{/with}}
9
9
  {{else}}
10
10
  {{#if ../this.content.isFileDownload}}
11
11
  {{#with this.content.trackingData}}data-new-hr-click-tracking='{"settings": [{"type":"download","secondLevelId": "{{this.secondLevelId}}","clickLabel": "{{this.pageName}}"}]}'{{/with}}
12
12
  {{/if}}
13
13
  {{/if}}
14
14
  {{#if this.isTargetBlank}} target="_blank" rel="noopener{{#if this.hasNoReferrerFlag}} noreferrer{{/if}}"{{/if}}
15
- {{#if _isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
15
+ {{#if ../isAriaHidden}} aria-hidden="true" tabindex="-1"{{/if}}
16
16
  >
17
+ {{/with}}
17
18
  {{> @partial-block }}
18
- </a>
19
- {{/with}}
19
+ </a>
@@ -1,6 +1,6 @@
1
1
  {{#switch templatePath}}
2
- {{#case "components/header/service_navigation/service_navigation_item"}}
3
- {{> components/header/service_navigation/service_navigation_item}}
2
+ {{#case "components/site_header/service_navigation/service_navigation_item"}}
3
+ {{> components/site_header/service_navigation/service_navigation_item}}
4
4
  {{/case}}
5
5
  {{#case "components/teaser/group_teaser/group_teaser"}}
6
6
  {{> components/teaser/group_teaser/group_teaser}}
@@ -8,4 +8,7 @@
8
8
  {{#case "components/teaser/teaser_standard"}}
9
9
  {{> components/teaser/teaser_standard}}
10
10
  {{/case}}
11
+ {{#case "components/teaser/components/teaser_comments"}}
12
+ {{> components/teaser/components/teaser_comments}}
13
+ {{/case}}
11
14
  {{/switch}}
@@ -20,7 +20,7 @@
20
20
  <body itemscope itemtype="http://schema.org/WebPage">
21
21
  <div class="js-pageSwap">
22
22
 
23
- {{> components/header/header }}
23
+ {{> components/site_header/header }}
24
24
 
25
25
  <main
26
26
  onclick="void(0)"
@@ -33,27 +33,27 @@
33
33
  {{> components/teaser/teaser_standard }}
34
34
  </div>
35
35
  <div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-8 sm:col-main">
36
- {{> components/teaser/teaser_standard teasersize="lg"}}
37
- {{> components/teaser/teaser_standard teasersize="lg"}}
36
+ {{> components/teaser/teaser_standard teaserSize="50"}}
37
+ {{> components/teaser/teaser_standard teaserSize="50"}}
38
38
  </div>
39
39
  <div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-8 sm:col-main">
40
- {{> components/teaser/teaser_standard teasersize="md"}}
41
- {{> components/teaser/teaser_standard teasersize="md"}}
42
- {{> components/teaser/teaser_standard teasersize="md"}}
40
+ {{> components/teaser/teaser_standard teaserSize="33"}}
41
+ {{> components/teaser/teaser_standard teaserSize="33"}}
42
+ {{> components/teaser/teaser_standard teaserSize="33"}}
43
43
  </div>
44
44
  <div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-8 sm:col-main">
45
- {{> components/teaser/teaser_standard teasersize="lg"}}
46
- {{> components/teaser/teaser_standard teasersize="lg"}}
45
+ {{> components/teaser/teaser_standard teaserSize="50"}}
46
+ {{> components/teaser/teaser_standard teaserSize="50"}}
47
47
  </div>
48
48
  <div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-8 sm:col-main">
49
- {{> components/teaser/teaser_standard teasersize="sm"}}
50
- {{> components/teaser/teaser_standard teasersize="sm"}}
51
- {{> components/teaser/teaser_standard teasersize="sm"}}
52
- {{> components/teaser/teaser_standard teasersize="sm"}}
49
+ {{> components/teaser/teaser_standard teaserSize="25"}}
50
+ {{> components/teaser/teaser_standard teaserSize="25"}}
51
+ {{> components/teaser/teaser_standard teaserSize="25"}}
52
+ {{> components/teaser/teaser_standard teaserSize="25"}}
53
53
  </div>
54
54
  <div class="grid grid-cols-12 py-6 col-full gap-x-6 gap-y-6 sm:px-8 sm:col-main">
55
- {{> components/teaser/teaser_standard teasersize="lg"}}
56
- {{> components/teaser/teaser_standard teasersize="lg"}}
55
+ {{> components/teaser/teaser_standard teaserSize="50"}}
56
+ {{> components/teaser/teaser_standard teaserSize="50"}}
57
57
  </div>
58
58
 
59
59
  </div>
@@ -21,7 +21,7 @@
21
21
  {{#with this.brandNavigationItems}}
22
22
  <ul class="flex pl-0.5 pr-3 md:px-0 flex-nowrap lg:mr-0">
23
23
  {{#each this}}
24
- {{> components/header/brand_navigation/brand_navigation_item }}
24
+ {{> components/site_header/brand_navigation/brand_navigation_item }}
25
25
  {{/each}}
26
26
  </ul>
27
27
  {{/with}}
@@ -9,12 +9,12 @@
9
9
 
10
10
  <div id="anchorNavWrapper"
11
11
  class="hidden">
12
- {{> components/header/anchor_navigation/anchor_navigation }}
12
+ {{> components/site_header/anchor_navigation/anchor_navigation }}
13
13
  </div>
14
14
 
15
15
  <div id="brandNavWrapper"
16
16
  class="relative flex items-center justify-center order-1 w-full bg-white z-101 print:hidden">
17
- {{> components/header/brand_navigation/brand_navigation }}
17
+ {{> components/site_header/brand_navigation/brand_navigation }}
18
18
  </div>
19
19
 
20
20
  <div id="serviceNavWrapper"
@@ -28,22 +28,22 @@
28
28
 
29
29
  <div id="serviceLogoWrapper"
30
30
  class="flex items-center order-1 w-full pl-4 pr-2 tablet:pl-5 lg:items-end lg:pb-3 bg-blue-congress md:px-0 md:h-12 lg:h-16 md:w-1/2 md:max-w-1/2 lg:w-1/4 lg:max-w-1/4">
31
- {{> components/header/service_logo }}
31
+ {{> components/site_header/service_logo }}
32
32
  </div>
33
33
 
34
34
  <div id="serviceItemsWrapper"
35
35
  class="flex items-center justify-end flex-initial order-2 inline-block w-full max-w-full align-top bg-blue-congress md:h-12 lg:h-16 lg:order-2 lg:w-3/4 lg:max-w-3/4 md:mt-0 md:w-1/2 md:max-w-1/2 md:order-2 md:border-0 print:hidden ">
36
- {{> components/header/service_navigation/service_list }}
36
+ {{> components/site_header/service_navigation/service_list }}
37
37
 
38
- {{> components/header/search/quick_search_button }}
38
+ {{> components/site_header/navigation_search/quick_search_button }}
39
39
 
40
40
  <div class="hidden lg:flex">
41
- {{> components/header/search/quick_search_form }}
41
+ {{> components/site_header/navigation_search/quick_search_form }}
42
42
  </div>
43
43
 
44
44
  <div id="burgerWrapper"
45
45
  class="flex justify-end flex-none order-2 lg:order-4 md:order-4 lg:hidden ">
46
- {{> components/header/burger }}
46
+ {{> components/site_header/burger }}
47
47
  </div>
48
48
 
49
49
  </div>
@@ -56,7 +56,7 @@
56
56
  :class="shouldSectionNavBeHidden() ? '-mt-40 md:-mt-40 lg:-mt-40' : ''"
57
57
  class="flex justify-center order-3 w-full overflow-hidden duration-500 transition-max-height lg:transition-margin-top lg:duration-500 tablet:absolute tablet:top-22 tablet:w-half-screen tablet:ml-half-screen max-h-0 lg:overflow-visible md:mt-0 lg:flex lg:max-h-full lg:h-auto bg-blue-congress z-100 print:hidden"
58
58
  >
59
- {{> components/header/section_navigation/section_navigation }}
59
+ {{> components/site_header/section_navigation/section_navigation }}
60
60
  </div>
61
61
 
62
62
  <div x-cloak :class="shouldServiceNavBeHidden() ? 'hidden -mt-40' : ''"
@@ -72,7 +72,7 @@
72
72
  x-transition:leave-start="opacity-100 transform scale-y-100"
73
73
  x-transition:leave-end="opacity-0 transform scale-y-90">
74
74
 
75
- {{> components/header/search/quick_search_form }}
75
+ {{> components/site_header/navigation_search/quick_search_form }}
76
76
 
77
77
  </div>
78
78
 
@@ -1,5 +1,4 @@
1
1
  {{#with this.subNavigation}}
2
-
3
2
  <div {{#unless ../this.selected}}x-cloak{{/unless}}
4
3
  x-data="flyoutHandler"
5
4
  x-ref="{{getRandom}}"
@@ -44,11 +43,11 @@
44
43
  <div class="{{#if this.showAsFlyout}}lg:flex lg:flex-row -columnCount--{{this.columnCount}} lg:divide-x lg:divide-gray-200 {{else}} {{#if ../this.selected}} w-full lg:px-10 lg:container {{/if}}{{/if}}">
45
44
  {{#if this.showAsFlyout}}
46
45
  {{#each this.columns}}
47
- {{> components/header/navigation_flyout/navigation_flyout_column count=../this.columnCount navtype=../../_navigationType _parent=../../_parent _flyout=true~}}
46
+ {{> components/site_header/navigation_flyout/navigation_flyout_column count=../this.columnCount navtype=../../_navigationType _parent=../../_parent _flyout=true~}}
48
47
  {{/each}}
49
48
  {{else}}
50
49
  {{#with this.items}}
51
- {{> components/header/navigation_flyout/navigation_flyout_column selected=../../this.selected navtype=../../_navigationType _parent=../../_parent _flyout=false ~}}
50
+ {{> components/site_header/navigation_flyout/navigation_flyout_column selected=../../this.selected navtype=../../_navigationType _parent=../../_parent _flyout=false ~}}
52
51
  {{/with}}
53
52
  {{/if}}
54
53
  </div>
@@ -1,8 +1,7 @@
1
1
  <ul class="{{inline-switch count '["1","2"]' '["md:w-1/1", "md:w-1/1 lg:w-1/2"]'}} {{inline-switch navtype '["ServiceNavigation","RubrikNavigation"]' '["border-b border-gray-200 md:border-0","border-0"]'}} lg:even:pl-4 lg:odd:pr-4 {{#if selected}} lg:container lg:flex lg:h-9 {{/if}} ">
2
-
3
2
  {{~#each this ~}}
4
3
  {{~#if this.title~}}
5
- {{> components/header/navigation_flyout/navigation_flyout_item _parentselected=../selected _fromNav=../navtype _flyout=../_flyout _parent=../_parent ~}}
4
+ {{> components/site_header/navigation_flyout/navigation_flyout_item _parentselected=../selected _fromNav=../navtype _flyout=../_flyout _parent=../_parent ~}}
6
5
  {{~/if~}}
7
6
  {{~/each~}}
8
7
 
@@ -0,0 +1,7 @@
1
+ <li :class="dropped ? 'h-auto' : 'h-10'"
2
+ class="sb-navigation-flyout-item pl-4 {{#if _flyout}}lg:px-0 {{else}}lg:px-2 lg:first-of-type:pl-0 {{/if}}{{#if _parentselected}}lg:whitespace-nowrap{{/if}} flex h-auto text-base leading-6 border-b border-gray-200 lg:last:border-0 lg:border-0 text-blue-congress justify-start hover:underline">
3
+ {{#>components/base/link css=(inline-switch _fromNav '["RubrikNavigation","ServiceNavigation"]' '["link-focus-inset py-2 w-full","link-focus py-2 md:pl-0 lg:pl-0 lg:pr-0 break-words w-full"]') doNavigationTracking="true" clickLabelType=_fromNav clickLabelPrefix1=_parent clickLabelPrefix2=this.link.content.text }}
4
+ {{this.text}}
5
+ {{~#if this.link.hasIcon}}{{> components/base/image/icon _icon=this.link.iconName _addClass="w-4 h-4 fill-current ml-2 inline-flex" _iconmap="icons" }} {{/if}}
6
+ {{/components/base/link}}
7
+ </li>
@@ -10,7 +10,7 @@
10
10
  <ul class="flex flex-col items-center w-full text-left text-white list-none lg:flex-row lg:h-auto lg:mt-1">
11
11
  {{#each this}}
12
12
  {{#if (isStorybook)}}
13
- {{> components/header/section_navigation/section_navigation_item }}
13
+ {{> components/site_header/section_navigation/section_navigation_item }}
14
14
  {{else}}
15
15
  {{{this}}}
16
16
  {{/if}}
@@ -94,7 +94,7 @@
94
94
 
95
95
  {{/if}}
96
96
 
97
- {{> components/header/navigation_flyout/navigation_flyout _isSectionNav=true _navigationType="RubrikNavigation" _parent=this.text }}
97
+ {{> components/site_header/navigation_flyout/navigation_flyout _isSectionNav=true _navigationType="RubrikNavigation" _parent=this.text }}
98
98
 
99
99
  </li>
100
100
  {{/each}}
@@ -8,7 +8,7 @@
8
8
  {{#with this.serviceNavigationSSILinks}}
9
9
  <ul class="flex justify-around w-full h-full -itemCount-{{ count }} lg:w-auto lg:justify-end lg:pt-1">
10
10
  {{#each this}}
11
- {{> components/base/loadSSI templatePath='components/header/service_navigation/service_navigation_item' }}
11
+ {{> components/base/loadSSI templatePath='components/site_header/service_navigation/service_navigation_item' }}
12
12
  {{/each}}
13
13
  </ul>
14
14
  {{/with}}
@@ -50,7 +50,7 @@
50
50
  </div>
51
51
  </div>
52
52
  {{#if this.subNavigation}}
53
- {{> components/header/navigation_flyout/navigation_flyout _isSectionNav=false _navigationType="ServiceNavigation" _parent=this.text }}
53
+ {{> components/site_header/navigation_flyout/navigation_flyout _isSectionNav=false _navigationType="ServiceNavigation" _parent=this.text }}
54
54
  </button>
55
55
  {{else}}
56
56
  </a>
@@ -4,13 +4,13 @@
4
4
  {{#with this.teaserInfo}}
5
5
  {{#if this.showTeaserInfo~}}
6
6
  {{~#if this.showTeaserInfoDate}}
7
- {{~#with ../teaserDate}}
7
+ {{~#with ../this.teaserDate}}
8
8
  <time datetime="{{this.htmlDateTime}}">{{this.date}}</time>
9
9
  {{/with~}}
10
10
  <span class="mx-px last-of-type:hidden">|</span>
11
11
  {{else}}
12
12
  {{~#if this.showTeaserInfoDateTime}}
13
- {{~#with ../teaserDate}}
13
+ {{~#with ../this.teaserDate}}
14
14
  <time datetime="{{this.htmlDateTime}}">{{loca "date_simple_at" this.dateSeparatorTime}}</time>
15
15
  {{/with~}}
16
16
  <span class="mx-px last-of-type:hidden">|</span>
@@ -34,6 +34,7 @@
34
34
  {{/if}}
35
35
 
36
36
  {{!--Comments--}}
37
- {{> components/teaser/components/teaser_comments}}
38
-
37
+ {{#with this.commentsSsi}}
38
+ {{> components/base/loadSSI templatePath='components/teaser/components/teaser_comments' }}
39
+ {{/with}}
39
40
  </p>
@@ -1,10 +1,10 @@
1
1
  {{#with this.commentLink}}
2
2
  <span class="whitespace-nowrap">
3
- {{#>components/base/link _cssClasses="hover:underline decoration-1" _isAriaHidden=true _doTracking=(if this.doTracking 'true') _clickLabelPrefix1=this.realTeasersize _clickLabelPrefix2="comment" }}
3
+ {{#>components/base/link css="hover:underline decoration-1" _isAriaHidden=true _doTracking=(if this.doTracking 'true') _clickLabelPrefix1=this.realTeasersize _clickLabelPrefix2="comment" }}
4
4
  {{> components/base/image/icon _icon="kommentar" _iconmap="icons" _addClass="mr-0.5 inline w-5 h-5 text-toplineColor fill-current"}}
5
5
  <span class="sr-only">{{loca "comment_anchor_1"}}</span>
6
- <span class="text-toplineColor">{{this.content.commentNumber}}</span>
7
- {{#if this.content.hasOneComment}}
6
+ <span class="text-toplineColor">{{../../this.commentNumber}}</span>
7
+ {{#if ../../this.hasOneComment}}
8
8
  <span class="text-toplineColor">{{loca "comment_label_text"}}</span>
9
9
  {{else}}
10
10
  <span class="text-toplineColor">{{loca "comment_label_text_many"}}</span>