{% extends "patterns/base_page.html" %} {% load wagtailcore_tags wagtailimages_tags static %} {% block content %} {% image page.image fill-746x500 as hero_image %} {% include "patterns/molecules/hero/hero--proposition.html" with title=page.strapline desc=page.intro image=hero_image %} {# Service section #}

Services

{% if page.services_section_title %}

{{ page.services_section_title }}

{% endif %} {% if page.services_section_intro %}
{{ page.services_section_intro|richtext }}
{% endif %} {% include_block page.services_section_body %}
{# Our clients section #}

Our clients

{% if page.clients_section_title %}

{{ page.clients_section_title }}

{% endif %} {% if page.clients_section_intro %}
{{ page.clients_section_intro|richtext }}
{% endif %} {% include_block page.clients_section_body %}
{# Team section #} {# add extra space below the team section if there is no body content added - common for the team section #}

Our team

{% if page.team_section_title %}

{{ page.team_section_title|richtext }}

{% endif %} {% if page.team_section_intro %}
{{ page.team_section_intro|richtext }}
{% endif %} {% include_block page.team_section_body %}
{# Our work section #} {% if page.our_work_section_body %}
{# there is just one block allowed #}

{{ page.our_work_section_body.0.value.title }}

{# work block sits outside the proposition-section wrapper as it is full-width #} {% include_block page.our_work_section_body with hide_title=True %} {% endif %} {# Our thinking section #} {% if page.our_thinking_section_body %}
{# there is just one block allowed #}

{{ page.our_thinking_section_body.0.value.title }}

{# our thinking block sits outside the proposition-secion wrapper as it has it's own left and right padding, and so the 'more' button aligns with the one under 'work' above #} {% include_block page.our_thinking_section_body with hide_title=True %} {% endif %} {% endblock %}