{% extends "web_layout.html" %} {% load wagtailroutablepage_tags %} {% load wagtailimages_tags %} {% load cms_tags %} {% block title %} {{page.seo_title}} {% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% for block in page.body %} {% if block.block_type == 'carousel' %}
{% for content in block.value.content %}
{{forloop.counter}} / {{block.value.content|length}}
{{content.value.image.title}}
{% endfor %}
{% for content in block.value.content %} {% endfor %}
{% else %} {{block.block_type}} {% endif %} {% endfor %}
{% if title %}

{{title|safe}}

{% else %}

Latest

{% endif %}

{% for blog in page.get_children %} {% include 'components/blogs/gridIndex.html' with blog=blog %} {% endfor %}
{% endblock %} {% block script %} {% endblock script %}