@shift72/core-template 1.9.23 → 1.9.24
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
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [Unreleased](https://github.com/shift72/core-template/compare/1.9.
|
3
|
+
## [Unreleased](https://github.com/shift72/core-template/compare/1.9.24...HEAD)
|
4
|
+
|
5
|
+
## [1.9.24](https://github.com/shift72/core-template/compare/1.9.23...1.9.24)
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
|
9
|
+
- Use title image component only for films as other item types do not yet support imagemap
|
4
10
|
|
5
11
|
## [1.9.23](https://github.com/shift72/core-template/compare/1.9.22...1.9.23)
|
6
12
|
|
package/kibble.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"name": "core-template",
|
3
|
-
"version": "1.9.
|
3
|
+
"version": "1.9.24",
|
4
4
|
"siteUrl": "https://staging-store-kibble.shift72.com",
|
5
|
-
"builderVersion": "0.17.
|
5
|
+
"builderVersion": "0.17.6",
|
6
6
|
"defaultLanguage": "en",
|
7
7
|
"languages": {
|
8
8
|
"ar": {
|
@@ -194,5 +194,5 @@
|
|
194
194
|
"pageSize": 0
|
195
195
|
}
|
196
196
|
],
|
197
|
-
"coreTemplateVersion": "1.9.
|
197
|
+
"coreTemplateVersion": "1.9.24"
|
198
198
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@shift72/core-template",
|
3
|
-
"version": "1.9.
|
3
|
+
"version": "1.9.24",
|
4
4
|
"description": "Shift72 core template",
|
5
5
|
"license": "MIT",
|
6
6
|
"scripts": {
|
@@ -54,7 +54,7 @@
|
|
54
54
|
"postcss-cli": "^9.0.1",
|
55
55
|
"rollup": "^2.23.0",
|
56
56
|
"rollup-plugin-terser": "^6.1.0",
|
57
|
-
"s72-kibble": "^0.17.
|
57
|
+
"s72-kibble": "^0.17.6",
|
58
58
|
"sass": "^1.36.0"
|
59
59
|
},
|
60
60
|
"devDependencies": {
|
@@ -4,7 +4,7 @@
|
|
4
4
|
{{import "./item/synopsis.jet"}}
|
5
5
|
{{import "../../common/sponsor-image.jet"}}
|
6
6
|
{{import "../../common/cta_buttons.jet"}}
|
7
|
-
{{import "../../
|
7
|
+
{{import "../../film/title.jet"}}
|
8
8
|
|
9
9
|
|
10
10
|
|
@@ -37,8 +37,11 @@
|
|
37
37
|
{{end}}
|
38
38
|
|
39
39
|
<div class="meta-item-content">
|
40
|
-
{{
|
41
|
-
|
40
|
+
{{if isFilm}}
|
41
|
+
{{yield filmTitle(title=item.GetTitle(i18n),class="carousel",element="h3") item.InnerItem}}
|
42
|
+
{{else}}
|
43
|
+
<h3>{{item.GetTitle(i18n)}}</h3>
|
44
|
+
{{end}}
|
42
45
|
{{yield carouselItemTagline() item.InnerItem}}
|
43
46
|
|
44
47
|
{{if isset(item.InnerItem["Tagline"])}}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{{extends "../application/application.jet"}}
|
2
2
|
{{import "../common/slider.jet"}}
|
3
3
|
{{import "../items/tagline.jet"}}
|
4
|
-
{{import "../
|
4
|
+
{{import "../film/title.jet"}}
|
5
5
|
{{import "../items/sub_item.jet"}}
|
6
6
|
{{import "../collection/page_collection_item.jet"}}
|
7
7
|
{{import "../collection/slider.jet"}}
|
@@ -46,7 +46,7 @@
|
|
46
46
|
</div>
|
47
47
|
|
48
48
|
<div class="meta-detail-content">
|
49
|
-
{{yield
|
49
|
+
{{yield filmTitle(title=film.Title,class="carousel",element="h1") film}}
|
50
50
|
<div class="meta-detail-tagline-and-classification">
|
51
51
|
<div class="meta-detail-tagline">
|
52
52
|
{{yield metaItemTagline() film}}
|