Skip to content

Commit

Permalink
Remove escaping of "=" symbol for <head> for blog and brand
Browse files Browse the repository at this point in the history
  • Loading branch information
sacr3dc0w committed Dec 25, 2024
1 parent 253dd17 commit 61d8bc2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Draft
- Remove escaping of "=" symbol for <head> for blog and brand [#2528](https://github.com/bigcommerce/cornerstone/pull/2528)
- Remove escaping of "=" symbol for <head> [#2526](https://github.com/bigcommerce/cornerstone/pull/2526)
- Add Karla 700 font weight to schema.json and remove italic versions [#2522](https://github.com/bigcommerce/cornerstone/pull/2522)
- Fix product filter display name in Show More modal window [#2510](https://github.com/bigcommerce/cornerstone/pull/2510)
Expand Down
4 changes: 2 additions & 2 deletions templates/pages/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
---
{{#partial "head"}}
{{#if pagination.blog.previous}}
<link rel="prev" href="{{pagination.blog.previous}}">
<link rel="prev" href="{{{pagination.blog.previous}}}">
{{/if}}
{{#if pagination.blog.next}}
<link rel="next" href="{{pagination.blog.next}}">
<link rel="next" href="{{{pagination.blog.next}}}">
{{/if}}
{{/partial}}

Expand Down
4 changes: 2 additions & 2 deletions templates/pages/brand.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
{{inject "brandProductsPerPage" theme_settings.brandpage_products_per_page}}
{{#partial "head"}}
{{#if pagination.brand.previous}}
<link rel="prev" href="{{pagination.brand.previous}}">
<link rel="prev" href="{{{pagination.brand.previous}}}">
{{/if}}
{{#if pagination.brand.next}}
<link rel="next" href="{{pagination.brand.next}}">
<link rel="next" href="{{{pagination.brand.next}}}">
{{/if}}
{{/partial}}

Expand Down

0 comments on commit 61d8bc2

Please sign in to comment.