Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BCTHEME-1209 Default image defined in config.json is not rendering on blog pages #2253

Merged
merged 8 commits into from
Sep 5, 2022
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Make screen reader say all errors then each error while tabbing. [#2230]https://github.com/bigcommerce/cornerstone/pull/2230
- Clarify customer order pagination. [#2241]https://github.com/bigcommerce/cornerstone/pull/2241
- Fixed escaping on created store account confirm message. [#2248]https://github.com/bigcommerce/cornerstone/pull/2248
- Pass theme settings from blog page to blog post template. [#2253]https://github.com/bigcommerce/cornerstone/pull/2253

## 6.5.0 (06-24-2022)
- Category icons do not appear in Search Form [#2221]https://github.com/bigcommerce/cornerstone/pull/2221
Expand Down
2 changes: 1 addition & 1 deletion templates/pages/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1 class="page-heading">{{ blog.name }}</h1>
{{/unless}}

{{#each blog.posts}}
{{> components/blog/post post=this}}
{{> components/blog/post post=this theme_settings=../theme_settings}}
{{/each}}

{{> components/common/paginator pagination.blog}}
Expand Down