{% extends 'Layout/tutorial_layout.html' %} {% load core_tags %} {% load wagtailimages_tags %} {% block content %}
{% if page.bgGradient %}

{{page.customTitle|safe}}

{% elif page.bgImage.file.url %}
{{page.bgImage.title}}

{{page.customTitle|safe}}

{% else %}

{{page.customTitle|safe}}

{% endif %}

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.show_author %}

    {{page.owner}}

    | {% endif %}

    {{page.first_published_at|date:"d M,Y"}}

    |

    {{page.readTime}} min

    | {% if not user.is_authenticated %} {% else %} {% if not is_bookmarked %} {% else %} {% endif %} {% endif %}
    {% for social in page.tutorial_social.all %} {{social.slp.soLogoText|safe}} {% 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 %} {% include 'components/common/comment.html' %}
    {% if related_news %}

    Related News :

    {% for news in related_news %} {% endfor %}
    {% endif %} {% endblock content %} {% block script %} {% endblock script %}