{% extends "base.html" %} {% load wagtailcore_tags %} {% block body_class %}template-services{% endblock %} {% block content %}
{{ page.intro_title|richtext }}
{{ page.intro_text|richtext }}
Intro Image
{% for item in page.sections_services.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 }}
{% if forloop.counter == 3 %}
{% endif %}
{% endif %} {% endfor %}
{% for item in page.subsections_services.all %}
{{ item.sub_section_text|richtext }}
{% endfor %}

{% load static %} {% endblock content%}