{% extends "patterns/base_page.html" %} {% load wagtailcore_tags wagtailimages_tags navigation_tags static %} {% block theme_class %}theme--dark--transparent{% endblock %} {% block header %} {% include "patterns/atoms/skip-link/skip-link.html" %} {% include "patterns/organisms/header/header.html" %} {% include "patterns/atoms/menu-button/menu-button.html" %} {% include "patterns/molecules/navigation/mobile-nav.html" %} {% endblock %} {% block content %}
{# Hero #}
{# Heading desktop #} {% if page.hero_intro_primary or page.hero_intro_secondary %}

{{ page.hero_intro_primary }} {{ page.hero_intro_secondary }}

{% endif %}
{# Shards SVG window + images #}
{% comment %} The FE implemenetation optimises image loading by ensuring that only the required image is loaded by the browser {% endcomment %} {% for hero_image in hero_images %} {% image hero_image.image fill-1022x576 as hero_image %}
{% endfor %}
{# Heading tablet + mobile #} {% if page.hero_intro_primary or page.hero_intro_secondary %}

{{ page.hero_intro_primary }} {{ page.hero_intro_secondary }}

{% endif %}
{# 3 posts/case studies #}
{% if page.featured_posts.all %}
    {% for featured_post in page.featured_posts.all %} {% with post=featured_post.featured_post.specific %}
  • {{ post.title }}

  • {% endwith %} {% endfor %}
{% endif %}
{% endblock %}