{% extends 'Layout/news_layout.html' %} {% load core_tags %} {% load wagtailimages_tags %} {% block content %}

{% if page.customTitle %} {{page.customTitle|safe}} {% else %} {{page.title}} {% endif %}

{% if page.show_author %}

{{page.owner}}

| {% endif %}

{{page.first_published_at|smart_date}}

|

{{page.readTime}} min read

|
{% for social in page.news_social.all %} {{social.slp.soLogoText|safe}} {% 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}}
  • {% elif content.block_type == 'highlight_heading' %}
  • {{content.value.title}}
  • {% elif content.block_type == 'image_heading' %}
  • {{content.value.title}}
  • {% endif %} {% endfor %} {% elif block.block_type == 'row' %} {% for content in block.value.content %} {% for content in content.value %} {% if content.block_type == 'heading' %}
  • {{content.value.title}}
  • {% elif content.block_type == 'highlight_heading' %}
  • {{content.value.title}}
  • {% elif content.block_type == 'image_heading' %}
  • {{content.value.title}}
  • {% endif %} {% endfor %} {% endfor %} {% endif %} {% endfor %}
    {% if page.search_image %} {{page.title}} {% 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 %}
    {% if related_news %}

    Related News :

    {% endif %}
    {% endblock content %} {% block script %} {% endblock script %}