@shift72/core-template 1.6.0 → 1.8.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 +25 -1
- package/README.md +6 -4
- package/kibble.json +8 -2
- package/package.json +4 -4
- package/site/ar_LB.all.json +27 -0
- package/site/ca_ES.all.json +28 -1
- package/site/da_DK.all.json +28 -1
- package/site/de_DE.all.json +29 -2
- package/site/el_EL.all.json +27 -0
- package/site/en_AU.all.json +28 -1
- package/site/es_ES.all.json +27 -0
- package/site/es_MX.all.json +27 -0
- package/site/et_ET.all.json +28 -1
- package/site/fi_FI.all.json +27 -0
- package/site/fr_FR.all.json +29 -2
- package/site/hr_HR.all.json +28 -1
- package/site/hu_HU.all.json +28 -1
- package/site/it_IT.all.json +28 -1
- package/site/ja_JP.all.json +29 -2
- package/site/lt_LT.all.json +28 -1
- package/site/nl_BE.all.json +27 -0
- package/site/no_NO.all.json +27 -0
- package/site/pl_PL.all.json +27 -0
- package/site/pt_BR.all.json +27 -0
- package/site/pt_PT.all.json +28 -1
- package/site/ru_RU.all.json +27 -0
- package/site/sr_SR.all.json +27 -0
- package/site/static/fonts/fa-s72.woff +0 -0
- package/site/static/images/icons/amazonfiretv.png +0 -0
- package/site/static/images/icons/androidtv.png +0 -0
- package/site/static/images/icons/appletv.png +0 -0
- package/site/styles/_availability-tags.scss +1 -0
- package/site/styles/_awards.scss +3 -2
- package/site/styles/_buttons.scss +32 -1
- package/site/styles/_cta-buttons.scss +7 -9
- package/site/styles/_footer.scss +57 -5
- package/site/styles/_icons.scss +35 -0
- package/site/styles/_meta-detail.scss +27 -20
- package/site/styles/_meta-item-tagline.scss +1 -2
- package/site/styles/_meta-sub-item.scss +29 -4
- package/site/styles/_shift72.scss +4 -0
- package/site/styles/_swiper.scss +2 -2
- package/site/styles/_typography.scss +1 -1
- package/site/styles/_variables.scss +3 -3
- package/site/templates/application/footer/app-badges.jet +30 -11
- package/site/templates/application/footer/footer.jet +3 -0
- package/site/templates/application/footer/nav.jet +12 -12
- package/site/templates/application/footer/social-media-buttons.jet +25 -0
- package/site/templates/collection/carousel/item.jet +0 -2
- package/site/templates/film/item.jet +6 -8
- package/site/templates/items/meta_item.jet +0 -2
- package/site/templates/items/sub_item.jet +23 -19
- package/site/templates/items/tagline.jet +1 -1
- package/site/templates/tv/detail.jet +3 -6
- package/site/tr_TR.all.json +27 -0
- package/site/uk_UA.all.json +28 -1
- package/site/zh_TW.all.json +27 -0
|
@@ -147,10 +147,14 @@
|
|
|
147
147
|
.sponsor {
|
|
148
148
|
margin-bottom: 12px;
|
|
149
149
|
|
|
150
|
-
@include media-breakpoint-up(
|
|
150
|
+
@include media-breakpoint-up(lg) {
|
|
151
151
|
margin-bottom: 20px;
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
|
+
|
|
155
|
+
> .poster {
|
|
156
|
+
margin-bottom: 5px;
|
|
157
|
+
}
|
|
154
158
|
}
|
|
155
159
|
|
|
156
160
|
.poster {
|
|
@@ -172,6 +176,10 @@
|
|
|
172
176
|
.live {
|
|
173
177
|
display: none;
|
|
174
178
|
}
|
|
179
|
+
|
|
180
|
+
.s72-image {
|
|
181
|
+
display: initial;
|
|
182
|
+
}
|
|
175
183
|
}
|
|
176
184
|
|
|
177
185
|
.poster-wrapper .sponsor {
|
|
@@ -190,7 +198,8 @@
|
|
|
190
198
|
|
|
191
199
|
s72-element-switcher,
|
|
192
200
|
.meta-detail-bonus-content,
|
|
193
|
-
.meta-detail-episodes-content
|
|
201
|
+
.meta-detail-episodes-content,
|
|
202
|
+
.meta-awards-all {
|
|
194
203
|
flex: 1 1 100%;
|
|
195
204
|
max-width: 728px;
|
|
196
205
|
|
|
@@ -221,7 +230,12 @@ s72-element-switcher,
|
|
|
221
230
|
}
|
|
222
231
|
|
|
223
232
|
.meta-detail-synopsis {
|
|
233
|
+
margin-bottom: -4px;
|
|
224
234
|
max-width: 728px;
|
|
235
|
+
|
|
236
|
+
@include media-breakpoint-up(xs) {
|
|
237
|
+
margin-bottom: 0;
|
|
238
|
+
}
|
|
225
239
|
@include media-breakpoint-up(xl) {
|
|
226
240
|
max-width: 1100px;
|
|
227
241
|
}
|
|
@@ -229,7 +243,7 @@ s72-element-switcher,
|
|
|
229
243
|
|
|
230
244
|
.meta-detail-synopsis,
|
|
231
245
|
.meta-detail-switcher-tagline {
|
|
232
|
-
padding-top:
|
|
246
|
+
padding-top: 12px;
|
|
233
247
|
|
|
234
248
|
p {
|
|
235
249
|
animation: fadein 2s;
|
|
@@ -268,19 +282,6 @@ s72-element-switcher,
|
|
|
268
282
|
}
|
|
269
283
|
}
|
|
270
284
|
|
|
271
|
-
.recommendations-collection {
|
|
272
|
-
padding-top: 20px;
|
|
273
|
-
@include media-breakpoint-up(md) {
|
|
274
|
-
padding-top: 0;
|
|
275
|
-
}
|
|
276
|
-
@include media-breakpoint-up(lg) {
|
|
277
|
-
padding-top: 20px;
|
|
278
|
-
}
|
|
279
|
-
@include media-breakpoint-up(xl) {
|
|
280
|
-
padding-top: 80px;
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
|
|
284
285
|
.meta-detail-bundle {
|
|
285
286
|
.meta-detail-bg {
|
|
286
287
|
opacity: 0.4;
|
|
@@ -399,7 +400,10 @@ s72-element-switcher,
|
|
|
399
400
|
|
|
400
401
|
.meta-detail-episodes-content,
|
|
401
402
|
.meta-detail-bonus-content {
|
|
402
|
-
margin-bottom:
|
|
403
|
+
margin-bottom: 18px;
|
|
404
|
+
@include media-breakpoint-up(lg) {
|
|
405
|
+
margin-bottom: 32px;
|
|
406
|
+
}
|
|
403
407
|
|
|
404
408
|
h2 {
|
|
405
409
|
@include heading-3-style;
|
|
@@ -416,10 +420,13 @@ s72-element-switcher,
|
|
|
416
420
|
|
|
417
421
|
.element-switcher-wrapper {
|
|
418
422
|
display: grid;
|
|
419
|
-
gap: 50px;
|
|
420
|
-
grid-template-columns: auto auto;
|
|
421
423
|
width: 100%;
|
|
422
424
|
|
|
425
|
+
@include media-breakpoint-up(lg) {
|
|
426
|
+
gap: 50px;
|
|
427
|
+
grid-template-columns: auto auto;
|
|
428
|
+
}
|
|
429
|
+
|
|
423
430
|
.sponsor {
|
|
424
431
|
display: none;
|
|
425
432
|
padding-top: 10px;
|
|
@@ -450,6 +457,7 @@ s72-element-switcher {
|
|
|
450
457
|
margin-bottom: 62px;
|
|
451
458
|
|
|
452
459
|
.s72-toggle {
|
|
460
|
+
bottom: -36px;
|
|
453
461
|
&:hover {
|
|
454
462
|
color: var(--body-color-hover);
|
|
455
463
|
}
|
|
@@ -460,7 +468,6 @@ s72-element-switcher {
|
|
|
460
468
|
display: grid;
|
|
461
469
|
gap: 20px;
|
|
462
470
|
grid-template-columns: repeat(1, 1fr);
|
|
463
|
-
padding-bottom: 20px;
|
|
464
471
|
|
|
465
472
|
@include media-breakpoint-up(lg) {
|
|
466
473
|
grid-template-columns: repeat(2, 1fr);
|
|
@@ -1,14 +1,23 @@
|
|
|
1
1
|
.sub-item {
|
|
2
2
|
display: grid;
|
|
3
|
-
|
|
3
|
+
gap: 1px 15px;
|
|
4
4
|
grid-template-columns: 112px minmax(100px, 1fr);
|
|
5
5
|
grid-template-rows: auto minmax(0, 1fr);
|
|
6
|
-
margin-bottom:
|
|
7
|
-
padding-bottom:
|
|
6
|
+
margin-bottom: 16px;
|
|
7
|
+
padding-bottom: 16px;
|
|
8
8
|
|
|
9
9
|
@include media-breakpoint-up(sm) {
|
|
10
10
|
grid-template-columns: 175px minmax(100px, 1fr);
|
|
11
11
|
grid-template-rows: auto auto minmax(0, 1fr);
|
|
12
|
+
|
|
13
|
+
&:last-of-type {
|
|
14
|
+
margin-bottom: 0;
|
|
15
|
+
padding-bottom: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@include media-breakpoint-up(lg) {
|
|
20
|
+
gap: 5px 15px;
|
|
12
21
|
}
|
|
13
22
|
|
|
14
23
|
h3 {
|
|
@@ -37,17 +46,20 @@
|
|
|
37
46
|
}
|
|
38
47
|
|
|
39
48
|
.synopsis {
|
|
49
|
+
animation: fadein 2s;
|
|
40
50
|
font-size: 16px;
|
|
41
51
|
font-weight: $font-weight-light;
|
|
42
52
|
grid-column: 1 / 3;
|
|
43
53
|
letter-spacing: 0.6px;
|
|
44
54
|
line-height: 1.25;
|
|
45
55
|
margin-top: 5px;
|
|
56
|
+
overflow: hidden;
|
|
46
57
|
|
|
47
58
|
@include media-breakpoint-up(sm) {
|
|
59
|
+
display: block !important;
|
|
48
60
|
grid-column: auto;
|
|
49
61
|
grid-row: 2;
|
|
50
|
-
margin-bottom:
|
|
62
|
+
margin-bottom: 7px;
|
|
51
63
|
}
|
|
52
64
|
|
|
53
65
|
p {
|
|
@@ -110,3 +122,16 @@
|
|
|
110
122
|
.s72-playback-progress-bar {
|
|
111
123
|
background-color: var(--secondary);
|
|
112
124
|
}
|
|
125
|
+
|
|
126
|
+
s72-show-hide-switcher {
|
|
127
|
+
display: block;
|
|
128
|
+
margin-bottom: 15px;
|
|
129
|
+
padding-bottom: 15px;
|
|
130
|
+
transition: height 0.5s ease;
|
|
131
|
+
|
|
132
|
+
.s72-toggle {
|
|
133
|
+
@include media-breakpoint-up(sm) {
|
|
134
|
+
display: none;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
package/site/styles/_swiper.scss
CHANGED
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
$font-size: var(--heading-3-style-font-size),
|
|
49
49
|
$letter-spacing: var(--heading-3-style-letter-spacing),
|
|
50
50
|
$font-weight: $font-weight-normal,
|
|
51
|
-
$margin-bottom:
|
|
51
|
+
$margin-bottom: 12px,
|
|
52
52
|
$line-height: 24px
|
|
53
53
|
);
|
|
54
54
|
@include media-breakpoint-up(sm) {
|
|
@@ -106,9 +106,9 @@
|
|
|
106
106
|
--page-padding-top: 120px;
|
|
107
107
|
--page-padding-top-md: 120px;
|
|
108
108
|
--page-padding-top-lg: 180px;
|
|
109
|
-
--page-detail-padding-top:
|
|
110
|
-
--page-detail-padding-top-md:
|
|
111
|
-
--page-detail-padding-top-lg:
|
|
109
|
+
--page-detail-padding-top: 160px;
|
|
110
|
+
--page-detail-padding-top-md: 248px;
|
|
111
|
+
--page-detail-padding-top-lg: 400px;
|
|
112
112
|
|
|
113
113
|
--heading-1-style-letter-spacing: normal;
|
|
114
114
|
--heading-2-style-letter-spacing: normal;
|
|
@@ -3,23 +3,42 @@
|
|
|
3
3
|
{{block appBadges()}}
|
|
4
4
|
{{app_link_ios := config("app_link_ios")}}
|
|
5
5
|
{{app_link_android := config("app_link_android")}}
|
|
6
|
-
{{
|
|
6
|
+
{{app_link_apple_tv_enabled := config("app_link_apple_tv_enabled")}}
|
|
7
|
+
{{app_link_android_tv := config("app_link_android_tv")}}
|
|
8
|
+
{{app_link_fire_tv := config("app_link_fire_tv")}}
|
|
9
|
+
|
|
10
|
+
{{if app_link_ios != "" || app_link_android != ""}}
|
|
7
11
|
<div class="app-banner">
|
|
8
12
|
<h2 class="app-badge-title">{{ i18n("app_badge_title") }}</h2>
|
|
13
|
+
|
|
9
14
|
<div class="app-badge-container">
|
|
10
|
-
{{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
{{yield appBadge(href=app_link_ios, image="/images/icons/app-store-badge.png", altKey="app_badge_ios", imgClass="app-badge-image")}}
|
|
16
|
+
{{yield appBadge(href=app_link_android, image="/images/icons/google-play-badge.png", altKey="app_badge_android", imgClass="app-badge-image")}}
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
{{yield separator()}}
|
|
21
|
+
{{end}}
|
|
22
|
+
|
|
23
|
+
{{if app_link_apple_tv_enabled == "true" || app_link_android_tv != "" || app_link_fire_tv != ""}}
|
|
24
|
+
<div class="tv-app-banner">
|
|
25
|
+
<h2 class="tv-app-badge-title">{{ i18n("tv_app_badge_title") }}</h2>
|
|
26
|
+
|
|
27
|
+
<div class="tv-app-badge-container">
|
|
28
|
+
{{yield appBadge(href=app_link_fire_tv, image="/images/icons/amazonfiretv.png", altKey="app_badge_fire_tv", imgClass="tv-badge-image")}}
|
|
29
|
+
{{yield appBadge(href=app_link_android_tv, image="/images/icons/androidtv.png", altKey="app_badge_android_tv", imgClass="tv-badge-image")}}
|
|
30
|
+
{{yield appBadge(href=app_link_apple_tv_enabled, image="/images/icons/appletv.png", altKey="app_badge_apple_tv", imgClass="tv-badge-image")}}
|
|
20
31
|
</div>
|
|
21
32
|
</div>
|
|
22
33
|
|
|
23
34
|
{{yield separator()}}
|
|
24
35
|
{{end}}
|
|
25
36
|
{{end}}
|
|
37
|
+
|
|
38
|
+
{{block appBadge(href, image, altKey, imgClass)}}
|
|
39
|
+
{{if href != "" && href != "false"}}
|
|
40
|
+
<a class="app-badge-link" {{if href != "true" }} href="{{href}}" target="_blank" {{end}}>
|
|
41
|
+
<s72-image class="{{imgClass}}" src="{{image}}" alt="{{ i18n(altKey) }}" ></s72-image>
|
|
42
|
+
</a>
|
|
43
|
+
{{end}}
|
|
44
|
+
{{end}}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
{{import "./nav.jet"}}
|
|
4
4
|
{{import "./app-badges.jet"}}
|
|
5
5
|
{{import "./sponsor-banner.jet"}}
|
|
6
|
+
{{import "./social-media-buttons.jet"}}
|
|
6
7
|
|
|
7
8
|
{{block footer()}}
|
|
8
9
|
|
|
@@ -16,6 +17,8 @@
|
|
|
16
17
|
|
|
17
18
|
{{yield footerNav(navLinks=site.Navigation.Footer)}}
|
|
18
19
|
|
|
20
|
+
{{yield footerSocialMediaButtons()}}
|
|
21
|
+
|
|
19
22
|
{{yield footerInfo()}}
|
|
20
23
|
</footer>
|
|
21
24
|
{{end}}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{{ block footerNav(navLinks) }}
|
|
2
|
-
|
|
3
|
-
{{
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
{{ end }}
|
|
2
|
+
{{ if len(navLinks) > 0 }}
|
|
3
|
+
<nav class="footer-nav" aria-label="{{ i18n("wcag_aria_label_footer") }}">
|
|
4
|
+
<ul class="nav">
|
|
5
|
+
{{ range navLinks }}
|
|
6
|
+
<li class="nav-item {{ len(.Link.ExternalURL) == 0 && routeToSlug(.Link.Slug) == currentUrlPath ? "active" : "" }}">
|
|
7
|
+
<a class="nav-link" href="{{ len(.Link.ExternalURL) > 0 ? .Link.ExternalURL : routeToSlug(.Link.Slug) }}">{{ .Label }}</a>
|
|
8
|
+
</li>
|
|
9
|
+
{{ end }}
|
|
10
|
+
</ul>
|
|
11
|
+
</nav>
|
|
12
|
+
{{ end }}
|
|
13
|
+
{{ end }}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{{block footerSocialMediaButtons()}}
|
|
2
|
+
{{social_link_instagram := config("social_link_instagram")}}
|
|
3
|
+
{{social_link_youtube := config("social_link_youtube")}}
|
|
4
|
+
{{social_link_facebook := config("social_link_facebook")}}
|
|
5
|
+
{{social_link_twitter := config("social_link_twitter")}}
|
|
6
|
+
{{social_link_letterboxd := config("social_link_letterboxd")}}
|
|
7
|
+
|
|
8
|
+
{{if social_link_instagram != "" || social_link_youtube != "" || social_link_facebook != "" || social_link_twitter != "" || social_link_letterboxd != ""}}
|
|
9
|
+
<div class="footer-social-media-icons">
|
|
10
|
+
{{yield footerSocialMediaIcon(link=social_link_instagram, iconClass="instagram", titleKey="wcag_aria_label_social_instagram")}}
|
|
11
|
+
{{yield footerSocialMediaIcon(link=social_link_youtube, iconClass="youtube", titleKey="wcag_aria_label_social_youtube")}}
|
|
12
|
+
{{yield footerSocialMediaIcon(link=social_link_facebook, iconClass="facebook", titleKey="wcag_aria_label_social_facebook")}}
|
|
13
|
+
{{yield footerSocialMediaIcon(link=social_link_twitter, iconClass="twitter", titleKey="wcag_aria_label_social_twitter")}}
|
|
14
|
+
{{yield footerSocialMediaIcon(link=social_link_letterboxd, iconClass="letterboxd", titleKey="wcag_aria_label_social_letterboxd")}}
|
|
15
|
+
</div>
|
|
16
|
+
{{end}}
|
|
17
|
+
{{end}}
|
|
18
|
+
|
|
19
|
+
{{block footerSocialMediaIcon(link, iconClass, titleKey)}}
|
|
20
|
+
{{if link != ""}}
|
|
21
|
+
<a class="s72-btn" target="_blank" title="{{i18n(titleKey)}}" href="{{link}}">
|
|
22
|
+
<i class="fa fa-{{iconClass}}-footer"></i>
|
|
23
|
+
</a>
|
|
24
|
+
{{end}}
|
|
25
|
+
{{end}}
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
{{if config("default_image_type") == "portrait"}}
|
|
34
34
|
{{yield sponsor() film}}
|
|
35
35
|
|
|
36
|
-
{{if film.ImageMap["Portrait"] != ""}}
|
|
37
36
|
<div class="poster poster-portrait">
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
{{if film.ImageMap["Portrait"] != ""}}
|
|
38
|
+
<s72-availability-status data-slug="{{film.Slug}}"></s72-availability-status>
|
|
39
|
+
<s72-image src="{{film.ImageMap["Classification"]}}" alt="" class="classification-image">
|
|
40
|
+
<s72-image src="{{film.ImageMap["Portrait"]}}" alt="{{film.Title}}" class="poster poster-image poster-image-portrait"></s72-image>
|
|
41
|
+
{{end}}
|
|
41
42
|
</div>
|
|
42
|
-
{{end}}
|
|
43
43
|
{{end}}
|
|
44
44
|
</div>
|
|
45
45
|
|
|
@@ -157,9 +157,7 @@
|
|
|
157
157
|
<h2>{{i18n("meta_detail_bonus_title")}}</h2>
|
|
158
158
|
{{yield list(itemsPerRow=4, itemLayout="landscape") content}}
|
|
159
159
|
{{range bonus := film.Bonuses}}
|
|
160
|
-
|
|
161
|
-
{{yield subItem(item=bonus)}}
|
|
162
|
-
</div>
|
|
160
|
+
{{yield subItem(item=bonus)}}
|
|
163
161
|
{{end}}
|
|
164
162
|
{{end}}
|
|
165
163
|
</section>
|
|
@@ -29,9 +29,7 @@
|
|
|
29
29
|
{{end}}
|
|
30
30
|
{{pill := ""}}
|
|
31
31
|
{{pillSupplement := ""}}
|
|
32
|
-
{{slugRoute := routeToSlug(item.Slug)}}
|
|
33
32
|
{{if isEpisode}}
|
|
34
|
-
{{slugRoute = routeToSlug(item.InnerItem.Season.Slug) + "#episode-" + item.InnerItem.EpisodeNumber}}
|
|
35
33
|
{{synopsis = item.InnerItem.Overview}}
|
|
36
34
|
{{pill = i18n("episode_name") + " " + item.InnerItem.EpisodeNumber}}
|
|
37
35
|
{{pillSupplement = "from " + i18n("season_name") + " " + item.InnerItem.Season.SeasonNumber}}
|
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
{{ block subItem(item) }}
|
|
2
|
-
<
|
|
3
|
-
<div class="
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
{{if item.Runtime
|
|
14
|
-
|
|
2
|
+
<s72-show-hide-switcher target-elem=".synopsis">
|
|
3
|
+
<div class="sub-item">
|
|
4
|
+
<div class="poster-container">
|
|
5
|
+
<div class="poster">
|
|
6
|
+
<s72-availability-status slug="{{item.Slug}}"></s72-availability-status>
|
|
7
|
+
<s72-image src="{{item.Images.Landscape}}" alt="{{item.Title}}" class="poster-image poster-image-landscape"></s72-image>
|
|
8
|
+
<s72-play-button data-slug="{{item.Slug}}" title="{{item.Title}}"></s72-play-button>
|
|
9
|
+
<s72-playback-progress slug="{{item.Slug}}"></s72-playback-progress>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<h3>{{item.Title}}</h3>
|
|
13
|
+
{{if item.Runtime > 0 }}
|
|
14
|
+
<span class="runtime">
|
|
15
|
+
{{if item.Runtime.Hours() > 0}}
|
|
16
|
+
{{item.Runtime.Hours()}}{{i18n("runtime_hours")}}
|
|
17
|
+
{{end}}
|
|
18
|
+
{{item.Runtime.Minutes()}}{{i18n("runtime_minutes")}}
|
|
19
|
+
</span>
|
|
20
|
+
{{end}}
|
|
21
|
+
{{if item.Overview}}
|
|
22
|
+
<div class="synopsis s72-hide">{{item.Overview | raw}}</div> {* hide class prevents FOUC *}
|
|
15
23
|
{{end}}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
{{end}}
|
|
19
|
-
{{if item.Overview}}
|
|
20
|
-
<div class="synopsis">{{item.Overview | raw}}</div>
|
|
21
|
-
{{end}}
|
|
24
|
+
</div>
|
|
25
|
+
</s72-show-hide-switcher>
|
|
22
26
|
{{ end }}
|
|
@@ -81,9 +81,8 @@
|
|
|
81
81
|
<h2>{{i18n("meta_detail_episodes_title")}}</h2>
|
|
82
82
|
{{yield list(itemsPerRow=4, itemLayout="portrait") content}}
|
|
83
83
|
{{range episode := tvseason.Episodes}}
|
|
84
|
-
<
|
|
85
|
-
|
|
86
|
-
</div>
|
|
84
|
+
<a id="episode-{{episode.EpisodeNumber}}"></a>
|
|
85
|
+
{{yield subItem(item=episode)}}
|
|
87
86
|
{{end}}
|
|
88
87
|
{{end}}
|
|
89
88
|
</div>
|
|
@@ -94,9 +93,7 @@
|
|
|
94
93
|
<h2>{{i18n("meta_detail_bonus_title")}}</h2>
|
|
95
94
|
{{yield list(itemsPerRow=4, itemLayout="landscape") content}}
|
|
96
95
|
{{range bonus := tvseason.Bonuses}}
|
|
97
|
-
|
|
98
|
-
{{yield subItem(item=bonus)}}
|
|
99
|
-
</div>
|
|
96
|
+
{{yield subItem(item=bonus)}}
|
|
100
97
|
{{end}}
|
|
101
98
|
{{end}}
|
|
102
99
|
</section>
|
package/site/tr_TR.all.json
CHANGED
|
@@ -1511,5 +1511,32 @@
|
|
|
1511
1511
|
},
|
|
1512
1512
|
"new_card_error_timed_out": {
|
|
1513
1513
|
"other": "Bu kartı eklerken bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin veya farklı bir kart kullanın."
|
|
1514
|
+
},
|
|
1515
|
+
"tv_app_badge_title": {
|
|
1516
|
+
"other": "TV uygulamalarında kullanılabilir"
|
|
1517
|
+
},
|
|
1518
|
+
"app_badge_fire_tv": {
|
|
1519
|
+
"other": "Amazon Fire TV'den alın"
|
|
1520
|
+
},
|
|
1521
|
+
"app_badge_android_tv": {
|
|
1522
|
+
"other": "Android TV'de alın"
|
|
1523
|
+
},
|
|
1524
|
+
"app_badge_apple_tv": {
|
|
1525
|
+
"other": "Apple TV'de alın"
|
|
1526
|
+
},
|
|
1527
|
+
"wcag_aria_label_social_instagram": {
|
|
1528
|
+
"other": "Bizi Instagram'da ziyaret edin"
|
|
1529
|
+
},
|
|
1530
|
+
"wcag_aria_label_social_youtube": {
|
|
1531
|
+
"other": "Youtube'da abone olun"
|
|
1532
|
+
},
|
|
1533
|
+
"wcag_aria_label_social_facebook": {
|
|
1534
|
+
"other": "Facebook'ta bizi ziyaret edin"
|
|
1535
|
+
},
|
|
1536
|
+
"wcag_aria_label_social_twitter": {
|
|
1537
|
+
"other": "Twitter'da bizi ziyaret edin"
|
|
1538
|
+
},
|
|
1539
|
+
"wcag_aria_label_social_letterboxd": {
|
|
1540
|
+
"other": "Bizi Letterboxd'da ziyaret edin"
|
|
1514
1541
|
}
|
|
1515
1542
|
}
|
package/site/uk_UA.all.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"other": "Shift72"
|
|
10
10
|
},
|
|
11
11
|
"powered_by_url": {
|
|
12
|
-
"other": "https://www.
|
|
12
|
+
"other": "https://www.shift72.com"
|
|
13
13
|
},
|
|
14
14
|
"in_partnership_with": {
|
|
15
15
|
"other": "у партнерстві з"
|
|
@@ -1571,5 +1571,32 @@
|
|
|
1571
1571
|
},
|
|
1572
1572
|
"new_card_error_timed_out": {
|
|
1573
1573
|
"other": "Під час додавання цієї картки сталася помилка. Повторіть спробу пізніше або скористайтеся іншою карткою."
|
|
1574
|
+
},
|
|
1575
|
+
"tv_app_badge_title": {
|
|
1576
|
+
"other": "Доступно в додатках для телевізора"
|
|
1577
|
+
},
|
|
1578
|
+
"app_badge_fire_tv": {
|
|
1579
|
+
"other": "Отримайте його на Amazon Fire TV"
|
|
1580
|
+
},
|
|
1581
|
+
"app_badge_android_tv": {
|
|
1582
|
+
"other": "Завантажте на Android TV"
|
|
1583
|
+
},
|
|
1584
|
+
"app_badge_apple_tv": {
|
|
1585
|
+
"other": "Отримайте його на Apple TV"
|
|
1586
|
+
},
|
|
1587
|
+
"wcag_aria_label_social_instagram": {
|
|
1588
|
+
"other": "Відвідайте нас в Instagram"
|
|
1589
|
+
},
|
|
1590
|
+
"wcag_aria_label_social_youtube": {
|
|
1591
|
+
"other": "Підпишіться на Youtube"
|
|
1592
|
+
},
|
|
1593
|
+
"wcag_aria_label_social_facebook": {
|
|
1594
|
+
"other": "Відвідайте нас на Facebook"
|
|
1595
|
+
},
|
|
1596
|
+
"wcag_aria_label_social_twitter": {
|
|
1597
|
+
"other": "Відвідайте нас у Twitter"
|
|
1598
|
+
},
|
|
1599
|
+
"wcag_aria_label_social_letterboxd": {
|
|
1600
|
+
"other": "Відвідайте нас на Letterboxd"
|
|
1574
1601
|
}
|
|
1575
1602
|
}
|
package/site/zh_TW.all.json
CHANGED
|
@@ -1498,5 +1498,32 @@
|
|
|
1498
1498
|
},
|
|
1499
1499
|
"new_card_error_timed_out": {
|
|
1500
1500
|
"other": "添加該卡時出現問題。請稍後再試或使用其他卡。"
|
|
1501
|
+
},
|
|
1502
|
+
"tv_app_badge_title": {
|
|
1503
|
+
"other": "在電視應用程序上可用"
|
|
1504
|
+
},
|
|
1505
|
+
"app_badge_fire_tv": {
|
|
1506
|
+
"other": "在 Amazon Fire TV 上獲取"
|
|
1507
|
+
},
|
|
1508
|
+
"app_badge_android_tv": {
|
|
1509
|
+
"other": "在 Android TV 上獲取它"
|
|
1510
|
+
},
|
|
1511
|
+
"app_badge_apple_tv": {
|
|
1512
|
+
"other": "在 Apple TV 上獲取它"
|
|
1513
|
+
},
|
|
1514
|
+
"wcag_aria_label_social_instagram": {
|
|
1515
|
+
"other": "在 Instagram 上訪問我們"
|
|
1516
|
+
},
|
|
1517
|
+
"wcag_aria_label_social_youtube": {
|
|
1518
|
+
"other": "在 Youtube 上訂閱"
|
|
1519
|
+
},
|
|
1520
|
+
"wcag_aria_label_social_facebook": {
|
|
1521
|
+
"other": "在 Facebook 上訪問我們"
|
|
1522
|
+
},
|
|
1523
|
+
"wcag_aria_label_social_twitter": {
|
|
1524
|
+
"other": "在推特上訪問我們"
|
|
1525
|
+
},
|
|
1526
|
+
"wcag_aria_label_social_letterboxd": {
|
|
1527
|
+
"other": "在 Letterboxd 上訪問我們"
|
|
1501
1528
|
}
|
|
1502
1529
|
}
|