{% if page.search_image %}

{% endif %}
{% for hl in page.highlights %}
{% if hl.block_type == 'title' %}
{{hl.value.title}}
{% elif hl.block_type == 'list' %}
{% for item in hl.value %}
{{item}}
{% endfor %}
{% else %}
{{hl.block_type}}
{% endif %}
{% endfor %}
{{page.shortDesc|add_list_classes}}
{% for block in page.body %}
{% if block.block_type == 'section' %}
{% include 'components/BlogPageBlock/sectionBlock.html' %}
{% elif block.block_type == 'row' %}
{% include 'components/BlogPageBlock/rowBlock.html' %}
{% else %}
{{block.block_type}}
{% endif %}
{% endfor %}
Table of
content
{% for block in page.body %}
{% if block.block_type == 'section' %}
{% for content in block.value.content %}
{% if content.block_type == 'heading' %}
{{content.value.title}}
{% endif %}
{% endfor %}
{% elif block.block_type == 'row' %}
{% for content in block.value.content %}
{% if content.block_type == 'heading' %}
{{content.value.title}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% if page.news_products.all %}
Related
Products
{% for rp in page.news_products.all %}
{% image_url rp.product.search_image "fill-60x70|jpegquality-90" as img %}
{{rp.product.title}}
{% endfor %}
{% endif %}