{% 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 }} {% else %} {{ item.section_title|richtext}} {{ item.section_text|richtext}} {% endif %} {% else %} {{ item.section_title|richtext }} {{ item.section_text|richtext }} {% endif %} {% endfor %} {% endblock content %}