{% extends "base.html" %} {% load wagtailcore_tags %} {% block body_class %}template-homepage{% endblock %} {% block content %}

{{ page.intro_title|richtext }}

{{ page.intro_text|richtext }}
{{ page.intro_image|richtext }}
{% for item in page.homepage_sections.all %} {% if item.section_image %} {% if forloop.counter|divisibleby:2 %}

{{ item.section_title|richtext }}

{{ item.section_text|richtext }}
{{ item.section_title }}
{% else %}
{{ item.section_title|richtext}}
{{ item.section_text|richtext}}
Intro Image
{% endif %} {% else %}
{{ item.section_title|richtext }}
{{ item.section_text|richtext }}
{% endif %} {% endfor %} {% endblock content %}