|
@@ -23,11 +23,11 @@
|
|
|
<div class="block-body text-center">
|
|
|
<h3 class="heading heading-5 strong-600 text-capitalize title-over-flow" >
|
|
|
<a href="/products/{{ item.id }}" target="_blank" title=" {{ item.title | strip_html }}">
|
|
|
- {{ item.title | strip_html }}
|
|
|
+ {{ item.title | decode_html_entities | strip_html }}
|
|
|
</a>
|
|
|
</h3>
|
|
|
<p class="product-description title-over-flow">
|
|
|
- {{ item.content | strip_html | default: "No description " }}
|
|
|
+ {{ item.content | decode_html_entities | strip_html | default: "No description " }}
|
|
|
</p>
|
|
|
<div class="product-buttons mt-4">
|
|
|
<a href="/products/{{ item.id }}" class="btn btn-gray-dark btn-circle px-4" target="_blank">
|