{% extends "base.html" %} {% load wagtailimages_tags %} {% load cms_tags %} {% load blog_tags %} {% block title %} {{page.seo_title}} {% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% blog_comment_approved page.slug as app_commList %}
{% for block in page.blPoBanner %} {% if block.block_type == 'banner' %}
{% for content in block.value.content %}
{% srcset_image content.value.image width-600 class="w-[100%] h-[25rem]" %}
{% endfor %}
{% for content in block.value.content %} {% endfor %}
{% endif %} {% endfor %}
{% if page.blPoTitleTemplate == 'Multi Row' %} {% include 'components/blogs/mRowTitle.html' with page=page %} {% else %} {% include 'components/blogs/sRowTitle.html' with page=page comment=app_commList %} {% endif %}
{% for tag in page.tags.all %} #{{tag.name}} {% endfor %}
{% for block in page.body %}
{% if block.block_type == 'section' %} {% include 'Components/BlogPageBlocks/sectionBlock.html' %} {% elif block.block_type == 'row' %} {% include 'Components/BlogPageBlocks/rowBlock.html' %} {% else %}

{{block.block_type}}

{% endif %}
{% endfor %} {% if page.products %}

Comparision

{% for prod in page.products %} {% endfor %}
Product Brand Technology Support Users
{{prod.value.coProdName}} {{prod.value.coProdBrand}} {{prod.value.coProdTechStack}} {% if prod.value.coSupport %}{{prod.value.coSupport}}{% endif %} {% if prod.value.coUsers %}{{prod.value.coUsers}}{% endif %}
{% endif %}

{% if page.blogStory %} Web Story {% endif %} | Share on : {% for social in page.blogSocial %} {{social.value.slName.slpImgText |safe}} {% endfor %}

{% if app_commList.count > 0 %}

{{app_commList.count}} Comments

{% for comment in app_commList %} {% include 'components/blogs/comments.html' with comment=comment %} {% endfor %}
{% endif %}

Write a comment

{% csrf_token %}
{% if user.is_authenticated %} {% else %} Login To Comment {% endif %}

Table Of Contents


{% for block in page.body %} {% endfor %}

Archives


{% for month in page.archives %} {% ifchanged month.0 %} {{ month.0 }} ( {{month.4}} )
{% endifchanged %}
{{ month.2 }} ( {{month.3}} )
{% endfor %}
{% if page.blog_reLinks.all %} {% if page.blPoRelatedTemplate == 'Img Two Column' %} {% include 'components/blogs/relImgTwoCol.html' with relList=page.blog_reLinks.all %} {% endif %} {% if page.blPoRelatedTemplate == 'Img One Column' %} {% include 'components/blogs/relImgOneCol.html' with relBlogList=page.blog_reLinks.all %} {% endif %} {% endif %}
{% endblock %}