{% extends 'base.html' %} {% load static %} {% load cms_tags core_tags %} {% load wagtailmetadata_tags %} {% block meta_tags %} {% meta_tags %} {% endblock meta_tags %} {% block style %} {% endblock style %} {% block content %}
{% for slides in page.specific.hero %}
{% for rows in slides.value %}
{% for tiles in rows.value %}
{{tiles.value.page.specific.search_image.title}}

{{tiles.value.page.specific.customTitle|safe}}

{% endfor %}
{% endfor %}
{% endfor %}

> {% if page.menuName %} {{page.menuName}} {% else %} {{page.title}} {% endif %}

{% if page.slug == 'blogs' %} {% endif %}

Recent Posts

{% for post in recent %}

{{post.title}}

{{post.first_published_at|smart_date}}

{% endfor %} View More
{% include 'components/common/paging.html' %} {% endblock content %} {% block script %} {% endblock script %}